diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/builder/module.rpmspec linuxconf-1.15/builder/module.rpmspec *** linuxconf-1.14r4/builder/module.rpmspec Fri Jan 15 15:05:47 1999 --- linuxconf-1.15/builder/module.rpmspec Sat Apr 17 22:53:20 1999 *************** *** 9,13 **** BuildRoot: /tmp/rpm-MODULENAME-root requires: linuxconf ! %description --- 9,13 ---- BuildRoot: /tmp/rpm-MODULENAME-root requires: linuxconf ! requires: LINUXCONFAPIREV %description diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/dialog/multi.cc linuxconf-1.15/dialog/multi.cc *** linuxconf-1.14r4/dialog/multi.cc Sun Dec 20 17:10:07 1998 --- linuxconf-1.15/dialog/multi.cc Mon Apr 19 08:52:12 1999 *************** *** 50,53 **** --- 50,83 ---- /* + Copy a string, folding oversized line in several lines + Return the number of lines produced. + */ + static int dialog_textfold (const char *txt, int maxwidth, SSTRING &newtxt) + { + int ret = 0; + char line[maxwidth+2]; + char *pt = line; + while (*txt != '\0'){ + if (*txt == '\n' || (int)(pt-line) == maxwidth){ + *pt++ = '\n'; + *pt = '\0'; + newtxt.append (line); + if (*txt == '\n') txt++; + pt = line; + ret++; + }else{ + *pt++ = *txt++; + } + } + if (pt > line){ + *pt++ = '\n'; + *pt = '\0'; + newtxt.append (line); + ret++; + } + return ret; + } + + /* Open a centered window */ *************** *** 104,108 **** if (intro != NULL){ while (*intro != '\0'){ ! char tmp[100]; char *pt = tmp; while (*intro != '\0' && *intro != '\n'){ --- 134,138 ---- if (intro != NULL){ while (*intro != '\0'){ ! char tmp[COLS+1]; char *pt = tmp; while (*intro != '\0' && *intro != '\n'){ *************** *** 142,155 **** if (!internal->intro.is_empty()){ int tmp; ! intro_height += dialog_textsize(internal->intro.get(),&tmp); tmp += 4; if (dialog_mode == DIALOG_CURSES ! && tmp > COLS){ // Message should not be translated. It is for translator ! xconf_error ("Dialog introduction text too wide: deleted"); ! internal->intro.setfrom (""); ! }else{ ! if (tmp > intro_width) intro_width = tmp; } } internal->height = intro_height + frame_space + button_height + fields_height; --- 172,189 ---- if (!internal->intro.is_empty()){ int tmp; ! const char *introtxt = internal->intro.get(); ! int tmp_height = dialog_textsize(introtxt,&tmp); tmp += 4; if (dialog_mode == DIALOG_CURSES ! && tmp >= COLS){ // Message should not be translated. It is for translator ! //xconf_error ("Dialog introduction text too wide: deleted"); ! SSTRING newintro; ! tmp_height = dialog_textfold (introtxt,COLS-4,newintro); ! internal->intro.setfrom (newintro); ! tmp = COLS-1; } + if (tmp > intro_width) intro_width = tmp; + intro_height += tmp_height; } internal->height = intro_height + frame_space + button_height + fields_height; diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/cfr/main/introweb.html linuxconf-1.15/help.files/cfr/main/introweb.html *** linuxconf-1.14r4/help.files/cfr/main/introweb.html Thu Apr 8 22:54:46 1999 --- linuxconf-1.15/help.files/cfr/main/introweb.html Sun Apr 18 10:02:43 1999 *************** *** 1,8 **** ! Linuxconf 1.14r4 !

Linuxconf 1.14r4


1. Qu'est-ce que Linuxconf

--- 1,8 ---- ! Linuxconf 1.15 !

Linuxconf 1.15


1. Qu'est-ce que Linuxconf

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/fi/main/introweb.html linuxconf-1.15/help.files/fi/main/introweb.html *** linuxconf-1.14r4/help.files/fi/main/introweb.html Thu Apr 8 22:55:00 1999 --- linuxconf-1.15/help.files/fi/main/introweb.html Sun Apr 18 10:02:56 1999 *************** *** 1,8 **** ! Linuxconf 1.14r4 !

Linuxconf 1.14r4


1. Mikä Linuxconf?

--- 1,8 ---- ! Linuxconf 1.15 !

Linuxconf 1.15


1. Mikä Linuxconf?

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/fr/main/introweb.html linuxconf-1.15/help.files/fr/main/introweb.html *** linuxconf-1.14r4/help.files/fr/main/introweb.html Thu Apr 8 22:55:12 1999 --- linuxconf-1.15/help.files/fr/main/introweb.html Sun Apr 18 10:03:09 1999 *************** *** 1,8 **** ! Linuxconf 1.14r4 !

Linuxconf 1.14r4


1. Qu'est ce que Linuxconf

--- 1,8 ---- ! Linuxconf 1.15 !

Linuxconf 1.15


1. Qu'est ce que Linuxconf

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/it/main/introweb.html linuxconf-1.15/help.files/it/main/introweb.html *** linuxconf-1.14r4/help.files/it/main/introweb.html Thu Apr 8 22:55:28 1999 --- linuxconf-1.15/help.files/it/main/introweb.html Sun Apr 18 10:03:28 1999 *************** *** 1,8 **** ! Linuxconf 1.14r4 !

Linuxconf 1.14r4


1. Cos'é Linuxconf

--- 1,8 ---- ! Linuxconf 1.15 !

Linuxconf 1.15


1. Cos'é Linuxconf

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/no/main/introweb.html linuxconf-1.15/help.files/no/main/introweb.html *** linuxconf-1.14r4/help.files/no/main/introweb.html Thu Apr 8 22:55:34 1999 --- linuxconf-1.15/help.files/no/main/introweb.html Sun Apr 18 10:03:35 1999 *************** *** 1,8 **** ! Linuxconf 1.14r4 !

Linuxconf 1.14r4


1. Hva er Linuxconf

--- 1,8 ---- ! Linuxconf 1.15 !

Linuxconf 1.15


1. Hva er Linuxconf

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/pt/main/introweb.html linuxconf-1.15/help.files/pt/main/introweb.html *** linuxconf-1.14r4/help.files/pt/main/introweb.html Thu Apr 8 22:55:45 1999 --- linuxconf-1.15/help.files/pt/main/introweb.html Sun Apr 18 10:03:46 1999 *************** *** 1,8 **** ! Configurador Linux 1.14r4 !

Configurador Linux 1.14r4


O que é o Configurador Linux

--- 1,8 ---- ! Configurador Linux 1.15 !

Configurador Linux 1.15


O que é o Configurador Linux

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/README linuxconf-1.15/help.files/se/README *** linuxconf-1.14r4/help.files/se/README Sun Mar 7 18:43:21 1999 --- linuxconf-1.15/help.files/se/README Fri Apr 2 17:54:45 1999 *************** *** 1,4 **** ! Linuxconf Version: 1.13r14 ! Översatta hjälptexter Datum: 990223 --------------------- --- 1,4 ---- ! Linuxconf Version: 1.14r2 ! Översatta hjälptexter Datum: 990402 --------------------- *************** *** 25,49 **** access.sgml fstab.sgml Påbörjade --------- ! fstab: ! mountpoint.sgml Ej påbörjade ------------ ! quota.sgml ! quotacheck.sgml ! swap.sgml ! dialout: dnsconf: firewall: mailconf: netadm: netconf: pppdialin: rarp: samba: ! userconf: Hälptexter saknas f n --- 25,114 ---- access.sgml fstab.sgml + mountpoint.sgml + quota.sgml + quotacheck.sgml + swap.sgml + userconf: + filter.sgml Påbörjade --------- ! userconf: ! password.sgml Ej påbörjade ------------ ! userconf: ! shells.sgml ! user.sgml ! users.sgml dnsconf: + conflict.sgml + edit.sgml + forwarders.sgml + intro.sgml + iprange.sgml + primary.sgml + secondary.sgml firewall: + firewall.sgml mailconf: + aliases.sgml + basic.sgml + complex.sgml + faxalias.sgml + faxbasic.sgml + faxrules.sgml + faxuser.sgml + faxzone.sgml + intro.sgml + mailfax.sgml + mailtable.sgml + masquerade.sgml + spam.sgml + vdomain.sgml netadm: + group.sgml + netadm.sgml + remadmin.sgml netconf: + amd.sgml + connect.sgml + datetime.sgml + default_route.sgml + devlist.sgml + dropin.sgml + exports.sgml + gated.sgml + host.conf.sgml + hosts.sgml + html_access.sgml + inetd.sgml + ip_aliases.sgml + ipx.sgml + missing.sgml + netconf.sgml + netlevel.sgml + networks.sgml + nis.sgml + others.sgml + resolv.sgml + routed.sgml + routes.sgml + scope.sgml + simple.sgml + simul.sgml + thishost.sgml pppdialin: + dialin.sgml rarp: + rarp.sgml samba: ! global.sgml ! homes.sgml ! samba.sgml ! share.sgml ! dialout: ! ppp.sgml Hälptexter saknas f n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/access-1.html linuxconf-1.15/help.files/se/fstab/access-1.html *** linuxconf-1.14r4/help.files/se/fstab/access-1.html Sun Mar 7 15:19:24 1999 --- linuxconf-1.15/help.files/se/fstab/access-1.html Fri Apr 2 15:16:30 1999 *************** *** 3,7 **** ! Att komma åt lokala och avlägsna filsystem: Syfte --- 3,7 ---- ! Att komma åt lokala och icke lokala filsystem: Syfte diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/access-2.html linuxconf-1.15/help.files/se/fstab/access-2.html *** linuxconf-1.14r4/help.files/se/fstab/access-2.html Sun Mar 7 15:19:24 1999 --- linuxconf-1.15/help.files/se/fstab/access-2.html Fri Apr 2 15:16:30 1999 *************** *** 3,7 **** ! Att komma åt lokala och avlägsna filsystem: Att komma åt lokala diskar --- 3,7 ---- ! Att komma åt lokala och icke lokala filsystem: Att komma åt lokala diskar diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/access-3.html linuxconf-1.15/help.files/se/fstab/access-3.html *** linuxconf-1.14r4/help.files/se/fstab/access-3.html Sun Mar 7 15:19:24 1999 --- linuxconf-1.15/help.files/se/fstab/access-3.html Fri Apr 2 15:16:30 1999 *************** *** 3,7 **** ! Att komma åt lokala och avlägsna filsystem: Att komma åt NFS-volymer --- 3,7 ---- ! Att komma åt lokala och icke lokala filsystem: Att komma åt NFS-volymer diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/access-4.html linuxconf-1.15/help.files/se/fstab/access-4.html *** linuxconf-1.14r4/help.files/se/fstab/access-4.html Sun Mar 7 15:19:24 1999 --- linuxconf-1.15/help.files/se/fstab/access-4.html Fri Apr 2 15:16:30 1999 *************** *** 3,7 **** ! Att komma åt lokala och avlägsna filsystem: Virtuellt minne och partitioner --- 3,7 ---- ! Att komma åt lokala och icke lokala filsystem: Virtuellt minne och partitioner diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/access.html linuxconf-1.15/help.files/se/fstab/access.html *** linuxconf-1.14r4/help.files/se/fstab/access.html Sun Mar 7 15:19:24 1999 --- linuxconf-1.15/help.files/se/fstab/access.html Fri Apr 2 15:16:30 1999 *************** *** 3,7 **** ! Att komma åt lokala och avlägsna filsystem --- 3,7 ---- ! Att komma åt lokala och icke lokala filsystem *************** *** 13,17 **** Contents
!

Att komma åt lokala och avlägsna filsystem

Inledning

--- 13,17 ---- Contents
!

Att komma åt lokala och icke lokala filsystem

Inledning

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/access.sgml linuxconf-1.15/help.files/se/fstab/access.sgml *** linuxconf-1.14r4/help.files/se/fstab/access.sgml Wed Mar 3 19:14:45 1999 --- linuxconf-1.15/help.files/se/fstab/access.sgml Thu Mar 18 18:44:51 1999 *************** *** 1,5 ****
! Att komma åt lokala och avlägsna filsystem <author>Inledning --- 1,5 ---- <!doctype linuxdoc system> <article> ! <title>Att komma åt lokala och icke lokala filsystem <author>Inledning diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/fstab-1.html linuxconf-1.15/help.files/se/fstab/fstab-1.html *** linuxconf-1.14r4/help.files/se/fstab/fstab-1.html Thu Mar 11 16:40:31 1999 --- linuxconf-1.15/help.files/se/fstab/fstab-1.html Fri Apr 2 15:16:37 1999 *************** *** 3,7 **** <HEAD> <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> ! <TITLE>Att komma åt lokala och avlägsna filsystem: Syfte --- 3,7 ---- ! Att komma åt lokala och icke lokala filsystem: Syfte diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/fstab-2.html linuxconf-1.15/help.files/se/fstab/fstab-2.html *** linuxconf-1.14r4/help.files/se/fstab/fstab-2.html Thu Mar 11 16:40:31 1999 --- linuxconf-1.15/help.files/se/fstab/fstab-2.html Fri Apr 2 15:16:37 1999 *************** *** 3,7 **** ! Att komma åt lokala och avlägsna filsystem: Observera --- 3,7 ---- ! Att komma åt lokala och icke lokala filsystem: Observera diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/fstab.html linuxconf-1.15/help.files/se/fstab/fstab.html *** linuxconf-1.14r4/help.files/se/fstab/fstab.html Thu Mar 11 16:40:31 1999 --- linuxconf-1.15/help.files/se/fstab/fstab.html Fri Apr 2 15:16:37 1999 *************** *** 3,7 **** ! Att komma åt lokala och avlägsna filsystem --- 3,7 ---- ! Att komma åt lokala och icke lokala filsystem *************** *** 13,17 **** Contents
!

Att komma åt lokala och avlägsna filsystem

Principer

--- 13,17 ---- Contents
!

Att komma åt lokala och icke lokala filsystem

Principer

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/fstab.sgml linuxconf-1.15/help.files/se/fstab/fstab.sgml *** linuxconf-1.14r4/help.files/se/fstab/fstab.sgml Sun Mar 7 15:24:06 1999 --- linuxconf-1.15/help.files/se/fstab/fstab.sgml Thu Mar 18 18:45:12 1999 *************** *** 1,5 ****
! Att komma åt lokala och avlägsna filsystem <author>Principer --- 1,5 ---- <!doctype linuxdoc system> <article> ! <title>Att komma åt lokala och icke lokala filsystem <author>Principer diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/mountpoint-3.html linuxconf-1.15/help.files/se/fstab/mountpoint-3.html *** linuxconf-1.14r4/help.files/se/fstab/mountpoint-3.html Thu Mar 11 16:59:01 1999 --- linuxconf-1.15/help.files/se/fstab/mountpoint-3.html Tue Mar 16 18:27:07 1999 *************** *** 70,76 **** superanvändaren normalt kan göra. </LI> ! <LI>Användarbegränsningar ! Detta val gör att kärnan aktiverar användarbegränsningar i filsystemet. Uppföljningen håller i realtid reda på använt diskutrymme, antalet filer och kataloger för varje --- 70,76 ---- superanvändaren normalt kan göra. </LI> ! <LI>Användargränsvärden ! Detta val gör att kärnan aktiverar användargränsvärden i filsystemet. Uppföljningen håller i realtid reda på använt diskutrymme, antalet filer och kataloger för varje *************** *** 87,94 **** fyller disken. </LI> ! <LI>Gruppbegränsningar ! Detta ger samma funktionalitet som användarbegränsningar, men ! för grupper. Gruppbegränsningarna innehåller summan av gränserna för alla medlemmarna i gruppen. En fil <EM>quota.group</EM> skapas när denna funktion aktiveras och systemprogram <EM>quotacheck</EM> --- 87,94 ---- fyller disken. </LI> ! <LI>Gruppgränsvärden ! Detta ger samma funktionalitet som användargränsvärden, men ! för grupper. Dessa gruppgränsvärden innehåller summan av gränserna för alla medlemmarna i gruppen. En fil <EM>quota.group</EM> skapas när denna funktion aktiveras och systemprogram <EM>quotacheck</EM> diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/mountpoint.sgml linuxconf-1.15/help.files/se/fstab/mountpoint.sgml *** linuxconf-1.14r4/help.files/se/fstab/mountpoint.sgml Thu Mar 11 16:58:48 1999 --- linuxconf-1.15/help.files/se/fstab/mountpoint.sgml Fri Apr 2 17:58:09 1999 *************** *** 96,102 **** superanvändaren normalt kan göra. ! <item>Användarbegränsningar ! Detta val gör att kärnan aktiverar användarbegränsningar i filsystemet. Uppföljningen håller i realtid reda på använt diskutrymme, antalet filer och kataloger för varje --- 96,102 ---- superanvändaren normalt kan göra. ! <item>Användargränsvärden ! Detta val gör att kärnan aktiverar användargränsvärden i filsystemet. Uppföljningen håller i realtid reda på använt diskutrymme, antalet filer och kataloger för varje *************** *** 113,120 **** fyller disken. ! <item>Gruppbegränsningar ! Detta ger samma funktionalitet som användarbegränsningar, men ! för grupper. Gruppbegränsningarna innehåller summan av gränserna för alla medlemmarna i gruppen. En fil <em/quota.group/ skapas när denna funktion aktiveras och systemprogram <em/quotacheck/ --- 113,120 ---- fyller disken. ! <item>Gruppgränsvärden ! Detta ger samma funktionalitet som användargränsvärden, men ! för grupper. Dessa gruppgränsvärden innehåller summan av gränserna för alla medlemmarna i gruppen. En fil <em/quota.group/ skapas när denna funktion aktiveras och systemprogram <em/quotacheck/ *************** *** 142,149 **** Tänk på att <em/Linux/ är ett fleranvändarsystem. Det är ganska ! enkelt att skapa användarkonton i ditt system för medarbetare så ! att de kan dela på din processor eller systemtjänster. Det skulle vara ! otrevligt att senare finna att alla har tillgång till varje personlig ! fil du har på dina <em/DOS/-partitioner. <em/Linux/ ger möjlighet till en bra lösning på detta. Du kan logiskt --- 142,149 ---- Tänk på att <em/Linux/ är ett fleranvändarsystem. Det är ganska ! enkelt att lägga in användare i ditt system för medarbetare så ! att de kan dela på din processor eller din dators systemtjänster. ! Det skulle vara otrevligt att senare finna att alla har tillgång ! till varje personlig fil du har på dina <em/DOS/-partitioner. <em/Linux/ ger möjlighet till en bra lösning på detta. Du kan logiskt diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quota-1.html linuxconf-1.15/help.files/se/fstab/quota-1.html *** linuxconf-1.14r4/help.files/se/fstab/quota-1.html Sun Mar 7 15:20:07 1999 --- linuxconf-1.15/help.files/se/fstab/quota-1.html Wed Mar 17 19:09:15 1999 *************** *** 3,7 **** <HEAD> <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> ! <TITLE>Disk quota management: Some concepts --- 3,7 ---- ! Diskgränsvärden: Några begrepp *************** *** 13,148 **** Contents
!

1. Some concepts

!

1.1 Per device/partition control

!

Disk quotas are managed partition by partition. There is no relation ! between the disk quotas setup for each partition. Further, you may ! enable disk quotas on some partitions while disabling them on others.

!

1.2 User and group quotas

!

You can control disk quota user per user. You can also work ! at the group level. Both quotas are setup completely independently. ! A group with a hundred users may have a disk space quota of ! much less than the sum of the users' quotas. !

When a file is created by a user, it belong to that user and to ! some group. The disk quota records of both the user and group are ! updated. !

A user may have plenty of available disk quota, but the group ! may be out of quota. Because of that the user won't be able ! to use more disk space while active in that group. This will not ! prevent them from doing work in another group assuming that the ! space is available, though they will need to switch to that group ! before this can occur.

!

1.3 Group quotas and Members default quotas

!

Linuxconf lets you manage quota with great flexibility. While you can ! can configure the quota limits user per user, most administrators will ! choose to operate more globally. Further, Linuxconf lets you ! partially fill quota specifications. This lets you use some defaults ! for a user and override only a single specification (maximum files ! allowed for example).

!

1.4 Disk quota information

!

You can control two aspects with disk quotas, (1) the number of files ! and directories owned by a user (or group) and (2) the amount of disk ! space owned. Both options are controlled separately. It is possible ! to have no limit on one while enforcing some limits on the other. !

Each aspect is controlled by three parameters:

!

1.5 Possible values for a limit

!

A given limit may have three values:

!

1.6 Effective quotas for users

!

Disk quotas for a user are influenced by three setups:

!

1.7 Effective quotas for groups

!

Disk quotas for a group are influenced by two setups:

--- 13,147 ---- Contents
!

1. Några begrepp

!

1.1 Kontroll per enhet/partition

!

Diskgränsvärden hanteras per partition. Det finns ingen koppling mellan ! gränsvärden i olika partitioner. Dessutom går det bra att aktivera ! gränsvärden i vissa partitioner och deaktivera gränsvärden på ! andra.

!

1.2 Diskgränsvärden per användare och grupper

!

Man kan kontrollera gränsvärden per användare. Det går också bra ! att specificera på gruppnivå. Dessa gränsvärden läggs in och utnyttjas ! oberoende av varandra. En grupp med hundra användare kan ha ! gränsvärden som är betydligt mindre än summan av gruppmedlemmarnas ! gränsvärden. !

När en fil skapas av en användare så tillhör användaren ! någon grupp. Gränsvärdesinformationen uppdateras då för både användaren ! och gruppen samtidigt. !

En användare kan ha långt kvar till gränsen men gruppens gräns kan redan ! vara överskriden. På grund av detta kan inte användaren utnyttja mer ! utrymme som medlem i den gruppen. Detta stoppar inte personen att ! arbeta i en annan grupp (om utrymme finns ledigt), men han/hon måste ! då först byta medlemsskap.

!

1.3 Diskgränsvärden för grupper och medlemmars standardgränsvärden

!

Linuxconf låter dig ändra gränsvärden inom vida gränser. Även om ! du kan anpassa gränsvärden per användare, så kommer de flesta ! systemansvariga att välja att arbeta mer översiktligt med grupper. ! Linuxconf låter dig till och med delvis fylla i gränsvärden. ! Detta låter dig använda en del förvalda gränsvärden för användare ! och ange enbart något enstaka gränsvärde (t ex maximalt antal filer).

!

1.4 Information om diskgränsvärden

!

Man kan kontrollera två saker med diskgränsvärden: Max antal filer och ! kataloger per användare (eller grupp) samt en begränsning av utnyttjat ! diskutrymme. Båda kontrolleras oberoende av varandra. Det är tillåtet ! att låta den ena vara obegränsad medan den andra begränsas. !

Var och en har tre värden:

!

1.5 Möjliga gränsvärden

!

Varje gränsvärde kan ha ett av tre olika typer av värden:

!

1.6 Faktiska gränsvärden för användare

!

Gränsvärden för användare påverkas av tre saker:

!

1.7 Faktiska gränsvärden för grupper

!

Diskgränsvärden för en grupp påverkas av två faktorer:

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quota-2.html linuxconf-1.15/help.files/se/fstab/quota-2.html *** linuxconf-1.14r4/help.files/se/fstab/quota-2.html Sun Mar 7 15:20:07 1999 --- linuxconf-1.15/help.files/se/fstab/quota-2.html Wed Mar 17 19:09:15 1999 *************** *** 3,7 **** ! Disk quota management: Enabling disk quotas --- 3,7 ---- ! Diskgränsvärden: Aktivering av diskgränsvärden *************** *** 13,25 **** Contents
!

2. Enabling disk quotas

!

You have to enable disk quotas on each partition where you want this ! level of control. This is done in the "File system configurator". Pick ! the menu "Access local drive" and then pick each partition where you ! want to enable disk quotas. In the dialog, you will find a check ! box for user quotas and another for group quotas. !

Again, these quotas (user and group) are completely independent ! and may be enabled separately.


--- 13,26 ---- Contents
!

2. Aktivering av diskgränsvärden

!

Man måste aktivera diskgränsvärden för alla partitioner där denna ! kontroll är önskvärd. Detta görs via meny "Filsystem" och ! "Anslutning lokal disk". Välj sedan varje partition där ! diskgränsvärden ska aktiveras. I dialog "Monteringsalternativ" ! finns en knapp för "Användargränsvärden" och en annan för ! "Gruppgränsvärden". !

Som sagt: Dessa gränsvärden (användare och grupper) är ! helt oberoende av varandra och kan aktiveras separat.


diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quota-3.html linuxconf-1.15/help.files/se/fstab/quota-3.html *** linuxconf-1.14r4/help.files/se/fstab/quota-3.html Sun Mar 7 15:20:07 1999 --- linuxconf-1.15/help.files/se/fstab/quota-3.html Wed Mar 17 19:09:15 1999 *************** *** 3,7 **** ! Disk quota management: Related commands --- 3,7 ---- ! Diskgränsvärden: Närbesläktade kommandon *************** *** 12,42 **** Contents
!

3. Related commands

!

Here are the different commands you may want to use to manipulate ! disk quotas:

--- 12,43 ---- Contents
!

3. Närbesläktade kommandon

!

Här är den olika kommandon som du kanske vill använda för att ! hantera diskgränsvärden:

diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quota.html linuxconf-1.15/help.files/se/fstab/quota.html *** linuxconf-1.14r4/help.files/se/fstab/quota.html Sun Mar 7 15:20:07 1999 --- linuxconf-1.15/help.files/se/fstab/quota.html Wed Mar 17 19:09:15 1999 *************** *** 3,7 **** ! Disk quota management --- 3,7 ---- ! Diskgränsvärden *************** *** 13,44 **** Contents
!

Disk quota management

!

Introduction


! With multi users systems, administrators must protect against users ! filling the disk. Often, users remove unneeded files only when ! prodded to, resulting eventually in a scarcity of space. Runaway ! programs may fill up large amounts of disk space as well, often ! through log files such as that recording errors. ! It is possible to limit the amount of files, directories and disk space used by a user.

!

1. Some concepts

!

2. Enabling disk quotas

!

3. Related commands


--- 13,45 ---- Contents
!

Diskgränsvärden

!

Inledning


! I fleranvändarsystem måste den ansvarige hindra användare att ! fylla disken. Ofta tar användare bort onödiga filer endast vid ! uppmaning, vilket förr eller senare resulterar i utrymmesbrist. ! Skenande program kan också fylla upp stora mängder utrymme. Ofta ! genom loggning av felmeddelanden. ! Det är möjligt att begränsa antalet filer, kataloger och utrymme ! som utnyttjas av enskilda användare eller grupper.

!

1. Några begrepp

!

2. Aktivering av diskgränsvärden

!

3. Närbesläktade kommandon


diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quota.sgml linuxconf-1.15/help.files/se/fstab/quota.sgml *** linuxconf-1.14r4/help.files/se/fstab/quota.sgml Wed Mar 3 18:40:49 1999 --- linuxconf-1.15/help.files/se/fstab/quota.sgml Wed Mar 17 18:43:01 1999 *************** *** 1,186 ****
! Disk quota management ! <author>Introduction <abstract> ! With multi users systems, administrators must protect against users ! filling the disk. Often, users remove unneeded files only when ! prodded to, resulting eventually in a scarcity of space. Runaway ! programs may fill up large amounts of disk space as well, often ! through log files such as that recording errors. ! It is possible to limit the amount of files, directories and ! disk space used by a user. </abstract> ! <sect>Some concepts <p> ! <sect1>Per device/partition control ! ! <p> Disk quotas are managed partition by partition. There is no relation ! between the disk quotas setup for each partition. Further, you may ! enable disk quotas on some partitions while disabling them on others. ! ! <sect1>User and group quotas ! ! <p> You can control disk quota user per user. You can also work ! at the group level. Both quotas are setup completely independently. ! A group with a hundred users may have a disk space quota of ! much less than the sum of the users' quotas. ! ! When a file is created by a user, it belong to that user and to ! some group. The disk quota records of both the user and group are ! updated. ! A user may have plenty of available disk quota, but the group ! may be out of quota. Because of that the user won't be able ! to use more disk space while active in that group. This will not ! prevent them from doing work in another group assuming that the ! space is available, though they will need to switch to that group ! before this can occur. ! <sect1>Group quotas and Members default quotas ! <p> <em/Linuxconf/ lets you manage quota with great flexibility. While you can ! can configure the quota limits user per user, most administrators will ! choose to operate more globally. Further, Linuxconf lets you ! partially fill quota specifications. This lets you use some defaults ! for a user and override only a single specification (maximum files ! allowed for example). ! <sect1>Disk quota information ! <p> You can control two aspects with disk quotas, (1) the number of files ! and directories owned by a user (or group) and (2) the amount of disk ! space owned. Both options are controlled separately. It is possible ! to have no limit on one while enforcing some limits on the other. ! Each aspect is controlled by three parameters: <itemize> ! <item><em/Soft limit/ ! The soft limit is a proposed operational limit. The user/group ! may exceed this limit, but only for a limited amount of time. ! <item><em/Hard limit/ ! This limit can't be exceed. ! <item><em/Grace period/ ! This is the length of time the user/group may exceed the soft ! limit. It defaults to 7 days, and is expressed in a ! days:hours:minutes:seconds format. </itemize> ! <sect1>Possible values for a limit <p> ! A given limit may have three values: <itemize> <item><em/0/ ! This means no limits <item><em/-1/ ! This means unspecified. The effective value is inherited from ! the defaults. ! <item><em/Some value greater than 0/ ! This is a limit. For disk space, this is expressed in ! kilobytes, and is true whatever the block size used ! on the disk. Linuxconf will translate the kilobytes to ! fit the disk subsystem requirements. </itemize> ! <sect1>Effective quotas for users <p> ! Disk quotas for a user are influenced by three setups: <itemize> ! <item><em/The user records/ ! Those records are visible in the user account ! dialog. There is one record per partition with user quotas ! enabled. ! <item><em/The defaults for group members/ ! Don't confuse this with group quotas. You can set up default ! values for disk quotas which apply directly to the members of ! the group. You modify these defaults right in the group ! account dialog. There is one record per partition with user ! quotas enabled. ! <item><em/General default values/ ! One record per partition provides the base defaults. Often ! this will be the only record modified with all users ! inheriting these values. </itemize> ! <sect1>Effective quotas for groups <p> ! Disk quotas for a group are influenced by two setups: <itemize> ! <item><em/The group records/ ! These records are visible in the group account dialog. There ! is one record per partition with group quota enabled. ! <item><em/General default values/ ! One record per partition provides the base defaults. Often ! this will be the only record modified with all groups ! inheriting these values. </itemize> ! <sect>Enabling disk quotas ! <p> You have to enable disk quotas on each partition where you want this ! level of control. This is done in the "File system configurator". Pick ! the menu "Access local drive" and then pick each partition where you ! want to enable disk quotas. In the dialog, you will find a check ! box for user quotas and another for group quotas. ! Again, these quotas (user and group) are completely independent ! and may be enabled separately. ! <sect>Related commands <p> ! Here are the different commands you may want to use to manipulate ! disk quotas: <itemize> <item><em/quotaon,quotaoff/ ! This lets you turn on and off quotas on a partition <item><em/repquota/ ! This prints a status report for the different users or ! groups. <item><em/quotacheck/ ! This walks a partition and updates the status of each group and ! user. This command is normally run right after an fsck at boot ! time. <item><em/edquota/ ! This is a bare bones quota management utility. It allows you ! to edit a user record or group record directly. <em/DO NOT ! USE THIS/. It has no concept of defaults and any change you ! make with it may be overwritten by linuxconf. </itemize> --- 1,190 ---- <!doctype linuxdoc system> <article> ! <title>Diskgränsvärden ! <author>Inledning <abstract> ! I fleranvändarsystem måste den ansvarige hindra användare att ! fylla disken. Ofta tar användare bort onödiga filer endast vid ! uppmaning, vilket förr eller senare resulterar i utrymmesbrist. ! Skenande program kan också fylla upp stora mängder utrymme. Ofta ! genom loggning av felmeddelanden. ! Det är möjligt att begränsa antalet filer, kataloger och utrymme ! som utnyttjas av enskilda användare eller grupper. </abstract> ! <sect>Några begrepp <p> ! <sect1>Kontroll per enhet/partition ! <p> ! Diskgränsvärden hanteras per partition. Det finns ingen koppling mellan ! gränsvärden i olika partitioner. Dessutom går det bra att aktivera ! gränsvärden i vissa partitioner och deaktivera gränsvärden på ! andra. ! <sect1>Diskgränsvärden per användare och grupper ! <p> ! Man kan kontrollera gränsvärden per användare. Det går också bra ! att specificera på gruppnivå. Dessa gränsvärden läggs in och utnyttjas ! oberoende av varandra. En grupp med hundra användare kan ha ! gränsvärden som är betydligt mindre än summan av gruppmedlemmarnas ! gränsvärden. ! ! När en fil skapas av en användare så tillhör användaren ! någon grupp. Gränsvärdesinformationen uppdateras då för både användaren ! och gruppen samtidigt. ! ! En användare kan ha långt kvar till gränsen men gruppens gräns kan redan ! vara överskriden. På grund av detta kan inte användaren utnyttja mer ! utrymme som medlem i den gruppen. Detta stoppar inte personen att ! arbeta i en annan grupp (om utrymme finns ledigt), men han/hon måste ! då först byta medlemsskap. ! <sect1>Diskgränsvärden för grupper och medlemmars standardgränsvärden ! <p> ! <em/Linuxconf/ låter dig ändra gränsvärden inom vida gränser. Även om ! du kan anpassa gränsvärden per användare, så kommer de flesta ! systemansvariga att välja att arbeta mer översiktligt med grupper. ! Linuxconf låter dig till och med delvis fylla i gränsvärden. ! Detta låter dig använda en del förvalda gränsvärden för användare ! och ange enbart något enstaka gränsvärde (t ex maximalt antal filer). ! <sect1>Information om diskgränsvärden ! <p> ! Man kan kontrollera två saker med diskgränsvärden: Max antal filer och ! kataloger per användare (eller grupp) samt en begränsning av utnyttjat ! diskutrymme. Båda kontrolleras oberoende av varandra. Det är tillåtet ! att låta den ena vara obegränsad medan den andra begränsas. ! Var och en har tre värden: <itemize> ! <item><em/Mjuk gräns/ ! Den mjuka gränsen är en föreslagen arbetsgräns. Användaren eller ! gruppen får överskrida denna gräns under en begränsad tid. ! <item><em/Absolut gräns/ ! Denna gräns kan inte överskridas. ! <item><em/Mjuk övergångstid/ ! Detta är den maximala tiden som användaren/grupp får överskrida ! den mjuka gränsen. Standardvärde är 7 dagar och uttrycks i ! format: dagar:timmar:minuter:sekunder. </itemize> ! <sect1>Möjliga gränsvärden <p> ! Varje gränsvärde kan ha ett av tre olika typer av värden: <itemize> <item><em/0/ ! Detta innebär att ingen gräns är satt. <item><em/-1/ ! Detta innebär att gränsvärde inte finns angivet. Gränsvärdet ! tas från förvalt standardvärde. ! <item><em/Ett värde större än 0/ ! Detta är ett gränsvärde. För diskutrymme uttrycks detta i KB och ! gäller oavsett vilken blockstorlek som gäller på disken. ! Linuxconf översätter värdet för att passa diskens drivrutin. </itemize> ! <sect1>Faktiska gränsvärden för användare <p> ! Gränsvärden för användare påverkas av tre saker: <itemize> ! <item><em/Användarposter/ ! Dessa poster syns i formuläret för användare. Det finns en post ! per partition när diskgränsvärden är aktiva. ! <item><em/Standardgränsvärden för gruppmedlemmar/ ! Blanda inte ihop detta med gränsvärden för grupper! Man kan ! ange standardgränsvärden som direkt avser gruppens medlemmar. ! Dessa gränsvärden läggs in i formuläret för grupper. ! En post per partition skapas när diskgränsvärden är aktiva. ! <item><em/Grundläggande standardgränsvärden/ ! En post per partition ger grundläggande standardgränsvärden. ! Detta är ofta den enda posten som läggs in. Då kommer alla ! användare att ges dessa gränsvärden. </itemize> ! <sect1>Faktiska gränsvärden för grupper <p> ! Diskgränsvärden för en grupp påverkas av två faktorer: <itemize> ! <item><em/Gruppinformationen/ ! Denna information kan ses i formuläret för grupper. Det finns ! en post per partition när gränsvärden för grupper är ! aktiverade. ! <item><em/Standardvärden/ ! En post per partition innehåller standardvärden. Detta är ! ofta den enda information som behövs. Det ger sedan alla grupper ! samma värden. </itemize> ! <sect>Aktivering av diskgränsvärden ! <p> ! Man måste aktivera diskgränsvärden för alla partitioner där denna ! kontroll är önskvärd. Detta görs via meny "Filsystem" och ! "Anslutning lokal disk". Välj sedan varje partition där ! diskgränsvärden ska aktiveras. I dialog "Monteringsalternativ" ! finns en knapp för "Användargränsvärden" och en annan för ! "Gruppgränsvärden". ! Som sagt: Dessa gränsvärden (användare och grupper) är ! helt oberoende av varandra och kan aktiveras separat. ! <sect>Närbesläktade kommandon <p> ! Här är den olika kommandon som du kanske vill använda för att ! hantera diskgränsvärden: <itemize> <item><em/quotaon,quotaoff/ ! Låter dig stänga av och sätta på gränsvärden för en ! partition. <item><em/repquota/ ! Skriver en statusrapport för de olika användarna och ! grupperna. <item><em/quotacheck/ ! Går igenom en partition och uppdaterar status för varje grupp ! och användare. Detta kommando körsvanligen automatiskt efter ! filsystemskontroll (fsck) efter uppstart. <item><em/edquota/ ! Detta är en enkel systemrutin för gränsvärden. Den låter ! dig ändra en användar- eller grupppost. <em/Använd inte denna./ ! Den tar ingen hänsyn till standardvärden och en ändring du ! gör med den kan komma att raderas av Linuxconf. </itemize> diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quotacheck-1.html linuxconf-1.15/help.files/se/fstab/quotacheck-1.html *** linuxconf-1.14r4/help.files/se/fstab/quotacheck-1.html Sun Mar 7 15:20:18 1999 --- linuxconf-1.15/help.files/se/fstab/quotacheck-1.html Wed Mar 17 19:09:23 1999 *************** *** 3,7 **** <HEAD> <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> ! <TITLE>Disk quota installation: Tasks --- 3,7 ---- ! Installation av diskgränsvärden: Uppgifter *************** *** 13,26 **** Contents
!

1. Tasks

!

The quotacheck utility will walk all directories of a file ! system and compute the amount of disk space and the number of ! files/directories for every user and every group. The results are ! stored in the quota.user and quota.group files. These files are ! located in the root of each file system. !

This command obviously take a while to execute. Once executed ! the files quota.user and quota.group will be maintained in real time ! by the kernel.


--- 13,24 ---- Contents
!

1. Uppgifter

!

Program qoutacheck går igenom alla kataloger i ett filsystem ! och räkna fram diskutrymmet och antalet filer och kataloger för ! alla användare och varje grupp. Resultatet lagras i filerna quota.user ! och quota.group. Dessa filer placeras i högst upp i varje filsystem. !

Detta kommando tar givetvis lite tid. När de väl är skapade så ! uppdateras filerna quota.user och quota.group löpande av kärnan.


diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quotacheck-2.html linuxconf-1.15/help.files/se/fstab/quotacheck-2.html *** linuxconf-1.14r4/help.files/se/fstab/quotacheck-2.html Sun Mar 7 15:20:18 1999 --- linuxconf-1.15/help.files/se/fstab/quotacheck-2.html Wed Mar 17 19:09:23 1999 *************** *** 3,7 **** ! Disk quota installation: user and group quotas are independent concepts --- 3,7 ---- ! Installation av diskgränsvärden: Användar- och gruppgränsvärden är oberoende av varandra *************** *** 12,20 **** Contents
!

2. user and group quotas are independent concepts

!

It is possible to install disk quotas only for users and not for groups ! or the reverse. If this is what you did, then only quota.user or ! quota.group will be produced.


--- 12,20 ---- Contents
!

2. Användar- och gruppgränsvärden är oberoende av varandra

!

Det är fullt möjligt att installera diskgränsvärden för använder men ! inte för grupper och omvänt. Om detta är gjort, så skapas enbart ! quota.user eller quota.group.


diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quotacheck.html linuxconf-1.15/help.files/se/fstab/quotacheck.html *** linuxconf-1.14r4/help.files/se/fstab/quotacheck.html Sun Mar 7 15:20:18 1999 --- linuxconf-1.15/help.files/se/fstab/quotacheck.html Wed Mar 17 19:09:23 1999 *************** *** 3,7 **** ! Disk quota installation --- 3,7 ---- ! Installation av diskgränsvärden *************** *** 13,24 **** Contents
!

Disk quota installation

!

Introduction

!

1. Tasks

!

2. user and group quotas are independent concepts


--- 13,24 ---- Contents
!

Installation av diskgränsvärden

!

Inledning

!

1. Uppgifter

!

2. Användar- och gruppgränsvärden är oberoende av varandra


diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/quotacheck.sgml linuxconf-1.15/help.files/se/fstab/quotacheck.sgml *** linuxconf-1.14r4/help.files/se/fstab/quotacheck.sgml Wed Mar 3 18:40:49 1999 --- linuxconf-1.15/help.files/se/fstab/quotacheck.sgml Wed Mar 17 19:05:57 1999 *************** *** 1,25 ****
! Disk quota installation ! <author>Introduction ! <sect>Tasks <p> ! The <em/quotacheck/ utility will walk all directories of a file ! system and compute the amount of disk space and the number of ! files/directories for every user and every group. The results are ! stored in the quota.user and quota.group files. These files are ! located in the root of each file system. ! This command obviously take a while to execute. Once executed ! the files quota.user and quota.group will be maintained in real time ! by the kernel. ! <sect>user and group quotas are independent concepts <p> ! It is possible to install disk quotas only for users and not for groups ! or the reverse. If this is what you did, then only quota.user or ! quota.group will be produced. </article> - --- 1,22 ---- <!doctype linuxdoc system> <article> ! <title>Installation av diskgränsvärden ! <author>Inledning ! <sect>Uppgifter <p> ! Program <em/qoutacheck/ går igenom alla kataloger i ett filsystem ! och räkna fram diskutrymmet och antalet filer och kataloger för ! alla användare och varje grupp. Resultatet lagras i filerna quota.user ! och quota.group. Dessa filer placeras i högst upp i varje filsystem. ! Detta kommando tar givetvis lite tid. När de väl är skapade så ! uppdateras filerna quota.user och quota.group löpande av kärnan. ! <sect>Användar- och gruppgränsvärden är oberoende av varandra <p> ! Det är fullt möjligt att installera diskgränsvärden för använder men ! inte för grupper och omvänt. Om detta är gjort, så skapas enbart ! quota.user eller quota.group. </article> diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/swap-1.html linuxconf-1.15/help.files/se/fstab/swap-1.html *** linuxconf-1.14r4/help.files/se/fstab/swap-1.html Sun Mar 7 15:20:29 1999 --- linuxconf-1.15/help.files/se/fstab/swap-1.html Wed Mar 17 19:09:30 1999 *************** *** 3,7 **** <HEAD> <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> ! <TITLE>Swap files and partitions: Purpose --- 3,7 ---- ! Virtuellt minne och partitioner: Syfte *************** *** 12,19 **** Contents
!

1. Purpose

!

Under construction !


Next --- 12,18 ---- Contents
!

1. Syfte

!

Under konstruktion


Next diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/swap.html linuxconf-1.15/help.files/se/fstab/swap.html *** linuxconf-1.14r4/help.files/se/fstab/swap.html Sun Mar 7 15:20:29 1999 --- linuxconf-1.15/help.files/se/fstab/swap.html Wed Mar 17 19:09:30 1999 *************** *** 3,7 **** ! Swap files and partitions --- 3,7 ---- ! Virtuellt minne och partitioner *************** *** 13,21 **** Contents
!

Swap files and partitions

!

Introduction

!

1. Purpose


--- 13,21 ---- Contents
!

Virtuellt minne och partitioner

!

Inledning

!

1. Syfte


diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/fstab/swap.sgml linuxconf-1.15/help.files/se/fstab/swap.sgml *** linuxconf-1.14r4/help.files/se/fstab/swap.sgml Wed Mar 3 18:40:49 1999 --- linuxconf-1.15/help.files/se/fstab/swap.sgml Wed Mar 17 19:08:53 1999 *************** *** 1,10 ****
! Swap files and partitions ! <author>Introduction ! ! <sect>Purpose ! <p> Under construction </article> --- 1,10 ---- <!doctype linuxdoc system> <article> ! <title>Virtuellt minne och partitioner ! <author>Inledning + <sect>Syfte + <p> + Under konstruktion </article> diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/features-7.html linuxconf-1.15/help.files/se/main/features-7.html *** linuxconf-1.14r4/help.files/se/main/features-7.html Sun Feb 21 08:33:59 1999 --- linuxconf-1.15/help.files/se/main/features-7.html Fri Apr 2 15:08:22 1999 *************** *** 3,7 **** <HEAD> <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> ! <TITLE>Linuxconf:s egenskaper: HTML body parametrar --- 3,7 ---- ! Linuxconf:s egenskaper: HTML <BODY> parametrar *************** *** 12,16 **** Contents
!

7. HTML body parametrar

Man kan lägga in parametrar till BODY i HTML. De parametrar som --- 12,16 ---- Contents


!

7. HTML <BODY> parametrar

Man kan lägga in parametrar till BODY i HTML. De parametrar som diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/features.html linuxconf-1.15/help.files/se/main/features.html *** linuxconf-1.14r4/help.files/se/main/features.html Sun Feb 21 08:33:59 1999 --- linuxconf-1.15/help.files/se/main/features.html Fri Apr 2 15:08:22 1999 *************** *** 40,44 ****

!

7. HTML body parametrar


--- 40,44 ----

!

7. HTML <BODY> parametrar


diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/intro-1.html linuxconf-1.15/help.files/se/main/intro-1.html *** linuxconf-1.14r4/help.files/se/main/intro-1.html Tue Feb 23 17:01:11 1999 --- linuxconf-1.15/help.files/se/main/intro-1.html Fri Apr 2 15:08:33 1999 *************** *** 3,7 **** ! Linuxconf 1.13: Vad är Linuxconf --- 3,7 ---- ! Linuxconf 1.14: Vad är Linuxconf *************** *** 23,27 ****
  • Nätverk (som klient)
      -
    1. Basic TCP/IP setup
    2. Grundläggande TCP/IP-inställning
    3. Ruttning
    4. --- 23,26 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/intro-2.html linuxconf-1.15/help.files/se/main/intro-2.html *** linuxconf-1.14r4/help.files/se/main/intro-2.html Tue Feb 23 17:01:13 1999 --- linuxconf-1.15/help.files/se/main/intro-2.html Fri Apr 2 15:08:35 1999 *************** *** 3,7 **** ! Linuxconf 1.13: Användning på kommandoraden --- 3,7 ---- ! Linuxconf 1.14: Användning på kommandoraden *************** *** 44,48 **** Lägg in en ny värddator i namn-servern. Linuxconf använder ! det angivna portområdets första lediga IP-adress.
    5. dnsconf --setcname synonym värddator --- 44,48 ---- Lägg in en ny värddator i namn-servern. Linuxconf använder ! det angivna adressområdets första lediga IP-adress.
    6. dnsconf --setcname synonym värddator *************** *** 177,181 ****
    7. ! linuxconf --setmod
        
      --- 177,181 ----
    8. ! linuxconf --setmod modul
        
      *************** *** 209,213 ****
    9. ! linuxconf --unsetmod
        
      --- 209,213 ----
    10. ! linuxconf --unsetmod modul
        
      *************** *** 317,322 **** ! Undersök vad som behöver göras för att aktivera aktuella ! inställningar.
    11. --- 317,322 ---- ! Undersök vad som behöver göras för att verkställa ! aktuella inställningar.
    12. *************** *** 345,355 **** Detta skaper ett användarkonto och uppdaterar ! utrymmesbegränsning från förinställda värden om sådana finns. Hemkatalogen skapas i förinställd katalog och innehåll i /etc/skel. ! Det finns i övrigt inga förinställda värden. ! Man kan använda kommando \"passwd\" för att ange lösenord för den nya användaren.
    13. --- 345,355 ---- Detta skaper ett användarkonto och uppdaterar ! utrymmesgränsvärden från förinställda värden om sådana finns. Hemkatalogen skapas i förinställd katalog och innehåll i /etc/skel. ! Det finns i övrigt inga standardvärden. ! Man kan använda kommando "passwd" för att ange lösenord för den nya användaren. diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/intro-3.html linuxconf-1.15/help.files/se/main/intro-3.html *** linuxconf-1.14r4/help.files/se/main/intro-3.html Tue Feb 23 17:01:13 1999 --- linuxconf-1.15/help.files/se/main/intro-3.html Fri Apr 2 15:08:35 1999 *************** *** 3,7 **** ! Linuxconf 1.13: Webb-gränsnitt --- 3,7 ---- ! Linuxconf 1.14: Webb-gränsnitt *************** *** 20,24 ****

      Menyn har samma struktur i alla de tre olika gränssnitten. Fördelen med webb-gränssnittet är att man kan sätta bokmärken för att snabbt ! komma till de olika inställningsformulären.

      3.1 Speciella ingångar till webb-gränssnittet --- 20,24 ----

      Menyn har samma struktur i alla de tre olika gränssnitten. Fördelen med webb-gränssnittet är att man kan sätta bokmärken för att snabbt ! komma till olika inställningsformulär.

      3.1 Speciella ingångar till webb-gränssnittet *************** *** 27,31 ****

      Användare kan ändra sitt lösenord via webb-läsaren och Linuxconf.

      T ex kan man lägga in följande adress i företagets sidor. !

      \"Klicka här för att ändra ditt lösenord\". http://<Värddatornamn>:98/htmlmod:lösenord:

      --- 27,31 ----

      Användare kan ändra sitt lösenord via webb-läsaren och Linuxconf.

      T ex kan man lägga in följande adress i företagets sidor. !

      "Klicka här för att ändra ditt lösenord". http://<Värddatornamn>:98/htmlmod:lösenord:

      diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/intro-4.html linuxconf-1.15/help.files/se/main/intro-4.html *** linuxconf-1.14r4/help.files/se/main/intro-4.html Tue Feb 23 17:01:14 1999 --- linuxconf-1.15/help.files/se/main/intro-4.html Fri Apr 2 15:08:35 1999 *************** *** 3,7 **** ! Linuxconf 1.13: Generell information --- 3,7 ---- ! Linuxconf 1.14: Generell information diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/intro-5.html linuxconf-1.15/help.files/se/main/intro-5.html *** linuxconf-1.14r4/help.files/se/main/intro-5.html Tue Feb 23 17:01:14 1999 --- linuxconf-1.15/help.files/se/main/intro-5.html Fri Apr 2 15:08:36 1999 *************** *** 3,7 **** ! Linuxconf 1.13: Brevlista --- 3,7 ---- ! Linuxconf 1.14: Brevlista diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/intro-6.html linuxconf-1.15/help.files/se/main/intro-6.html *** linuxconf-1.14r4/help.files/se/main/intro-6.html Tue Feb 23 17:01:14 1999 --- linuxconf-1.15/help.files/se/main/intro-6.html Fri Apr 2 15:08:36 1999 *************** *** 3,7 **** ! Linuxconf 1.13: Översättning --- 3,7 ---- ! Linuxconf 1.14: Översättning diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/intro.html linuxconf-1.15/help.files/se/main/intro.html *** linuxconf-1.14r4/help.files/se/main/intro.html Tue Feb 23 17:01:14 1999 --- linuxconf-1.15/help.files/se/main/intro.html Fri Apr 2 15:08:36 1999 *************** *** 3,7 **** ! Linuxconf 1.13 --- 3,7 ---- ! Linuxconf 1.14 *************** *** 13,17 **** Contents


      !

      Linuxconf 1.13

      Inledning

      --- 13,17 ---- Contents
      !

      Linuxconf 1.14

      Inledning

      diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/intro.sgml linuxconf-1.15/help.files/se/main/intro.sgml *** linuxconf-1.14r4/help.files/se/main/intro.sgml Tue Feb 23 17:00:55 1999 --- linuxconf-1.15/help.files/se/main/intro.sgml Fri Apr 2 17:58:33 1999 *************** *** 1,5 ****
      ! Linuxconf 1.13 Inledning --- 1,5 ----
      ! Linuxconf 1.14 Inledning *************** *** 15,19 **** Nätverk (som klient) - Basic TCP/IP setup Grundläggande TCP/IP-inställning Ruttning --- 15,18 ---- *************** *** 35,39 **** X11 ! Användarkonton Filsystem Uppstartssätt --- 34,38 ---- X11 ! Användare Filsystem Uppstartssätt *************** *** 88,92 **** Lägg in en ny värddator i namn-servern. Linuxconf använder ! det angivna portområdets första lediga IP-adress. dnsconf --setcname synonym värddator --- 87,91 ---- Lägg in en ny värddator i namn-servern. Linuxconf använder ! det angivna adressområdets första lediga IP-adress. dnsconf --setcname synonym värddator *************** *** 193,197 **** ! ! Speciella ingångar till webb-gränssnittet --- 334,338 ---- Menyn har samma struktur i alla de tre olika gränssnitten. Fördelen med webb-gränssnittet är att man kan sätta bokmärken för att snabbt ! komma till olika inställningsformulär. Speciella ingångar till webb-gränssnittet *************** *** 343,347 **** T ex kan man lägga in följande adress i företagets sidor. ! \"Klicka här för att ändra ditt lösenord\". http://<Värddatornamn>:98/htmlmod:lösenord: --- 342,346 ---- T ex kan man lägga in följande adress i företagets sidor. ! "Klicka här för att ändra ditt lösenord". http://<Värddatornamn>:98/htmlmod:lösenord: diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/introweb.html linuxconf-1.15/help.files/se/main/introweb.html *** linuxconf-1.14r4/help.files/se/main/introweb.html Thu Apr 8 22:56:06 1999 --- linuxconf-1.15/help.files/se/main/introweb.html Sun Apr 18 10:04:09 1999 *************** *** 1,8 **** ! Linuxconf 1.14r4 !

      Linuxconf 1.14r4


      1. What is Linuxconf

      --- 1,8 ---- ! Linuxconf 1.15 !

      Linuxconf 1.15


      1. What is Linuxconf

      diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/shutdown-1.html linuxconf-1.15/help.files/se/main/shutdown-1.html *** linuxconf-1.14r4/help.files/se/main/shutdown-1.html Sun Feb 21 08:34:22 1999 --- linuxconf-1.15/help.files/se/main/shutdown-1.html Fri Apr 2 15:08:44 1999 *************** *** 19,24 **** Att slå av strömmen kan eventuellt avbryta viktiga funktioner och lämna datorn i ett problematiskt läge. ! Att stänga av datorn kan ge problem, men gör i praktiken oftast ! inte det. Det beror på vad som sker just i det ögonblick som strömmen försvinner. Här är en liten lista:

      --- 19,24 ---- Att slå av strömmen kan eventuellt avbryta viktiga funktioner och lämna datorn i ett problematiskt läge. ! Att stänga av datorn kan ge problem, men gör oftast inte det ! i praktiken. Det avgörande är vad som sker just i det ögonblick som strömmen försvinner. Här är en liten lista:

      *************** *** 30,34 **** inte skrivit dokumentet till disken, även om ordbehandlaren har fått besked om att dokumentet sparats. ! Denna fördröjda skrivning ökar diskhanteringen väsentligt, men till ett pris: Om dator stängs av vid fel tillfälle, så kan information förloras. --- 30,34 ---- inte skrivit dokumentet till disken, även om ordbehandlaren har fått besked om att dokumentet sparats. ! Denna fördröjda skrivning ökar diskprestanda väsentligt, men till ett pris: Om dator stängs av vid fel tillfälle, så kan information förloras. diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/shutdown-2.html linuxconf-1.15/help.files/se/main/shutdown-2.html *** linuxconf-1.14r4/help.files/se/main/shutdown-2.html Sun Feb 21 08:34:22 1999 --- linuxconf-1.15/help.files/se/main/shutdown-2.html Fri Apr 2 15:08:44 1999 *************** *** 21,25 ****

      En radioknapp ger möjlighet att välja mellan omstart eller avstängning. ! En avstängning innebär samma sak som en avstängning, förutom att den får datorn att stanna helt. Det enda alternativet är att att stänga och sätta på strömmen eller att använda reset-knappen för att --- 21,25 ----

      En radioknapp ger möjlighet att välja mellan omstart eller avstängning. ! En avstängning innebär samma sak som en omstart, förutom att den får datorn att stanna helt. Det enda alternativet är att att stänga och sätta på strömmen eller att använda reset-knappen för att *************** *** 31,37 ****

      I ett fleranvändarsystem eller i en server så är det klokt att ! ge andra tid att slutföra det de håller på med, innan man stänger ! av datorn. ! Om du vill stänga eller göra en omstart NU, ange då noll i detta fält. Fältet anger hur många minuter som ska förflyta mellan meddelande och avstängning. --- 31,37 ----

      I ett fleranvändarsystem eller i en server så är det klokt att ! ge andra tid att slutföra det de håller på med, innan datorn stängs ! av. ! Om du vill stänga av eller göra en omstart NU, ange då noll i detta fält. Fältet anger hur många minuter som ska förflyta mellan meddelande och avstängning. diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/shutdown-4.html linuxconf-1.15/help.files/se/main/shutdown-4.html *** linuxconf-1.14r4/help.files/se/main/shutdown-4.html Sun Feb 21 08:34:23 1999 --- linuxconf-1.15/help.files/se/main/shutdown-4.html Fri Apr 2 15:08:45 1999 *************** *** 14,24 ****

      4. Automatisk filsystemskontroll

      !

      När avstängning sker ordentligt så sker en avmontering av alla filsystem (via program umount). Root-filsystemet ställs om till ! läsning enbart. För alla filsystem, inklusive root-filsystemet, sätts markering ok. Denna markering kontrolleras för varje ! filsystem i samband med nästa uppstart för beslut om det behövs en filsystemskontroll innan uppstarten kan fullföljas. Detta ! försäkrar om att filsystemsstrukturen fungerar efter ett oavsiktligt maskinstopp (t ex strömavbrott). Det hjälper inte mot informationsförluster: En ordentlig avstängning är alltid --- 14,24 ----

      4. Automatisk filsystemskontroll

      !

      När avstängning sker ordentligt så sker en demontering av alla filsystem (via program umount). Root-filsystemet ställs om till ! enbart läsning. För alla filsystem, inklusive root-filsystemet, sätts markering ok. Denna markering kontrolleras för varje ! filsystem i samband med nästa uppstart för att avgöra om det behövs en filsystemskontroll innan uppstarten kan fullföljas. Detta ! försäkrar att filsystemsstrukturen fungerar efter ett oavsiktligt maskinstopp (t ex strömavbrott). Det hjälper inte mot informationsförluster: En ordentlig avstängning är alltid diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/shutdown.html linuxconf-1.15/help.files/se/main/shutdown.html *** linuxconf-1.14r4/help.files/se/main/shutdown.html Sun Feb 21 08:34:23 1999 --- linuxconf-1.15/help.files/se/main/shutdown.html Fri Apr 2 15:08:45 1999 *************** *** 22,26 **** den enda användaren och inte har kontakt med något nätverk. Det finns olika sätt att stänga av eller omstarta en Linux-dator. ! Linuxconf har en som hanteras via ett formulär.


      --- 22,26 ---- den enda användaren och inte har kontakt med något nätverk. Det finns olika sätt att stänga av eller omstarta en Linux-dator. ! Linuxconf har ett som hanteras via ett formulär.


      diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/main/shutdown.sgml linuxconf-1.15/help.files/se/main/shutdown.sgml *** linuxconf-1.14r4/help.files/se/main/shutdown.sgml Sun Feb 21 08:11:08 1999 --- linuxconf-1.15/help.files/se/main/shutdown.sgml Mon Mar 15 19:12:06 1999 *************** *** 12,16 **** Det finns olika sätt att stänga av eller omstarta en Linux-dator. ! Linuxconf har en som hanteras via ett formulär. --- 12,16 ---- Det finns olika sätt att stänga av eller omstarta en Linux-dator. ! Linuxconf har ett som hanteras via ett formulär. *************** *** 22,27 **** Att slå av strömmen kan eventuellt avbryta viktiga funktioner och lämna datorn i ett problematiskt läge. ! Att stänga av datorn kan ge problem, men gör i praktiken oftast ! inte det. Det beror på vad som sker just i det ögonblick som strömmen försvinner. Här är en liten lista: --- 22,27 ---- Att slå av strömmen kan eventuellt avbryta viktiga funktioner och lämna datorn i ett problematiskt läge. ! Att stänga av datorn kan ge problem, men gör oftast inte det ! i praktiken. Det avgörande är vad som sker just i det ögonblick som strömmen försvinner. Här är en liten lista: *************** *** 35,39 **** inte skrivit dokumentet till disken, även om ordbehandlaren har fått besked om att dokumentet sparats. ! Denna En radioknapp ger möjlighet att välja mellan omstart eller avstängning. ! En avstängning innebär samma sak som en avstängning, förutom att den får datorn att stanna helt. Det enda alternativet är att att stänga och sätta på strömmen eller att använda reset-knappen för att --- 50,54 ----

      En radioknapp ger möjlighet att välja mellan omstart eller avstängning. ! En avstängning innebär samma sak som en omstart, förutom att den får datorn att stanna helt. Det enda alternativet är att att stänga och sätta på strömmen eller att använda reset-knappen för att *************** *** 59,65 ****

      I ett fleranvändarsystem eller i en server så är det klokt att ! ge andra tid att slutföra det de håller på med, innan man stänger ! av datorn. ! Om du vill stänga eller göra en omstart I ett fleranvändarsystem eller i en server så är det klokt att ! ge andra tid att slutföra det de håller på med, innan datorn stängs ! av. ! Om du vill stänga av eller göra en omstart Automatisk filsystemskontroll

      ! När avstängning sker ordentligt så sker en avmontering av alla filsystem (via program umount). Root-filsystemet ställs om till ! läsning enbart. För alla filsystem, inklusive root-filsystemet, sätts markering Automatisk filsystemskontroll

      ! När avstängning sker ordentligt så sker en demontering av alla filsystem (via program umount). Root-filsystemet ställs om till ! enbart läsning. För alla filsystem, inklusive root-filsystemet, sätts markering + + + + Urvalskontroll: Inget värde för urval + + + + + + Next + Previous + Contents +


      +

      1. Inget värde för urval

      + +

      Detta visar hela användarlistan. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/filter-2.html linuxconf-1.15/help.files/se/userconf/filter-2.html *** linuxconf-1.14r4/help.files/se/userconf/filter-2.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/filter-2.html Fri Apr 2 17:53:15 1999 *************** *** 0 **** --- 1,22 ---- + + + + + Urvalskontroll: List of selection fields + + + + + + Next + Previous + Contents +
      +

      2. List of selection fields

      + +
      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/filter-3.html linuxconf-1.15/help.files/se/userconf/filter-3.html *** linuxconf-1.14r4/help.files/se/userconf/filter-3.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/filter-3.html Fri Apr 2 17:53:16 1999 *************** *** 0 **** --- 1,59 ---- + + + + + Urvalskontroll: Urvalsfält + + + + + + Next + Previous + Contents +
      +

      3. Urvalsfält

      + +

      Detta formulär låter dig göra urval via flera fält i + användarinformationen. Fälten är: +

      +

      3.1 Prefix till "Login" +

      + +

      Listan innehåller då enbart de användare där login börjar med detta + prefix. Om en stjärna ("*") placeras först, så inkluderas alla + användare där login innehåller efterföljande sträng. +

      +

      3.2 Prefix till "Fullständigt namn" +

      + +

      Listan innehåller då enbart de användare där namnet börjar med detta + prefix. Om en stjärna ("*") placeras först, så inkluderas alla + användare där namnet innehåller efterföljande sträng. +

      +

      3.3 Fr o m "Användarnummer" +

      + +

      Ange startvärde för användarnummer. +

      +

      3.4 T o m "Användarnummer" +

      + +

      Ange slutvärde för användarnummer. +

      +

      3.5 Grupp +

      + +

      You can extract the user accounts for a specific group only. The default + is to show all groups. This field is only available for shell accounts. + For special accounts (POP, PPP), the group is already selected. + Användare i en enskild grupp. Som standard så visas alla grupper. Detta + fält finns endast tillgängligt för normalanvändare. För speciella + användare (POP, PPP) är gruppen redan förvald. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/filter-4.html linuxconf-1.15/help.files/se/userconf/filter-4.html *** linuxconf-1.14r4/help.files/se/userconf/filter-4.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/filter-4.html Fri Apr 2 17:53:16 1999 *************** *** 0 **** --- 1,25 ---- + + + + + Urvalskontroll: "Lägg till" + + + + + Next + Previous + Contents +
      +

      4. "Lägg till"

      + +

      Detta ger möjlighet att lägga in en ny användare utan att först + se användarlistan. +

      +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/filter.html linuxconf-1.15/help.files/se/userconf/filter.html *** linuxconf-1.14r4/help.files/se/userconf/filter.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/filter.html Fri Apr 2 17:53:16 1999 *************** *** 0 **** --- 1,49 ---- + + + + + Urvalskontroll + + + + + + Next + Previous + Contents +
      +

      Urvalskontroll

      + +

      Inledning

      +


      + Normalt finns ett stort antal användare i ett Linux-system. + Att använda en enda lista för att visa alla, är ofta besvärligt. Vid + användning av HTML-gränssnitt över en långsam länk, är det ännu sämre. + Urvalskontrollen dyker upp när det finns fler än 15 rader i en viss + användarlista. Dett ger möjlighet att begränsa urvalet en del. +
      +

      +

      1. Inget värde för urval

      + +

      +

      2. List of selection fields

      + +

      +

      3. Urvalsfält

      + + +

      +

      4. "Lägg till"

      + +
      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/filter.sgml linuxconf-1.15/help.files/se/userconf/filter.sgml *** linuxconf-1.14r4/help.files/se/userconf/filter.sgml Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/filter.sgml Fri Apr 2 17:52:57 1999 *************** *** 0 **** --- 1,62 ---- + +
      + Urvalskontroll + <author>Inledning + <abstract> + Normalt finns ett stort antal användare i ett <em>Linux</em>-system. + Att använda en enda lista för att visa alla, är ofta besvärligt. Vid + användning av HTML-gränssnitt över en långsam länk, är det ännu sämre. + + Urvalskontrollen dyker upp när det finns fler än 15 rader i en viss + användarlista. Dett ger möjlighet att begränsa urvalet en del. + </abstract> + + <sect>Inget värde för urval + + <p> + Detta visar hela användarlistan. + + <sect>List of selection fields + <sect>Urvalsfält + + <p> + Detta formulär låter dig göra urval via flera fält i + användarinformationen. Fälten är: + + <sect1>Prefix till "Login" + + <p> + Listan innehåller då enbart de användare där login börjar med detta + prefix. Om en stjärna ("*") placeras först, så inkluderas alla + användare där login innehåller efterföljande sträng. + + <sect1>Prefix till "Fullständigt namn" + <p> + Listan innehåller då enbart de användare där namnet börjar med detta + prefix. Om en stjärna ("*") placeras först, så inkluderas alla + användare där namnet innehåller efterföljande sträng. + + <sect1>Fr o m "Användarnummer" + <p> + Ange startvärde för användarnummer. + + <sect1>T o m "Användarnummer" + <p> + Ange slutvärde för användarnummer. + + <sect1>Grupp + <p> + You can extract the user accounts for a specific group only. The default + is to show all groups. This field is only available for shell accounts. + For special accounts (POP, PPP), the group is already selected. + Användare i en enskild grupp. Som standard så visas alla grupper. Detta + fält finns endast tillgängligt för normalanvändare. För speciella + användare (POP, PPP) är gruppen redan förvald. + + <sect>"Lägg till" + <p> + Detta ger möjlighet att lägga in en ny användare utan att först + se användarlistan. + + + </article> diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/password-1.html linuxconf-1.15/help.files/se/userconf/password-1.html *** linuxconf-1.14r4/help.files/se/userconf/password-1.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/password-1.html Fri Apr 2 17:53:25 1999 *************** *** 0 **** --- 1,30 ---- + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> + <HTML> + <HEAD> + <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> + <TITLE>Password setting policies: Policies for password + + + + + + Next + Previous + Contents +
      +

      1. Policies for password

      + +

      You can define here what is acceptable as a password. You control + the minimum length and the number of non alpha characters. By + forcing passwords made with other characters, you encourage + the choice of better passwords (hard to guess and crack). +

      Note that this is not effective on PAM aware systems such as + Red Hat 5. The PAM library has its own set of rules to + accept/reject a new password. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/password-2.html linuxconf-1.15/help.files/se/userconf/password-2.html *** linuxconf-1.14r4/help.files/se/userconf/password-2.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/password-2.html Fri Apr 2 17:53:25 1999 *************** *** 0 **** --- 1,34 ---- + + + + + Password setting policies: Private group + + + + + + Next + Previous + Contents +
      +

      2. Private group

      + +

      When this feature is enabled, linuxconf will create a group + having the same name as the user account, unless a group + is specified. The dialog for a new account appears with the + group field empty. +

      When disabled, linuxconf assigns a default group to new account (users). +

      This feature is not effective for special accounts such as POP and + PPP accounts since those accounts are assigned to a specific group + (popusers and pppusers). +

      Note also that this feature does not prevent you from assigning the + group you want to an account. If the group does not exist, you will have + the opportunity to create it on the fly. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/password-3.html linuxconf-1.15/help.files/se/userconf/password-3.html *** linuxconf-1.14r4/help.files/se/userconf/password-3.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/password-3.html Fri Apr 2 17:53:25 1999 *************** *** 0 **** --- 1,25 ---- + + + + + Password setting policies: Default base dir for homes + + + + + + Next + Previous + Contents +
      +

      3. Default base dir for homes

      + +

      Specify the base directory which will be used to create new + user accounts. It defaults to /home. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/password-4.html linuxconf-1.15/help.files/se/userconf/password-4.html *** linuxconf-1.14r4/help.files/se/userconf/password-4.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/password-4.html Fri Apr 2 17:53:26 1999 *************** *** 0 **** --- 1,115 ---- + + + + + Password setting policies: User defined account management commands + + + + + + Next + Previous + Contents +
      +

      4. User defined account management commands

      + +

      When linuxconf creates or deletes user accounts, it calls various + scripts. You can override these scripts by entering the path to your + own versions. You can also disable this process by erasing the path. + Linuxconf provides default values for some of these scripts. +

      +

      4.1 Command line arguments +

      + +

      Linuxconf always calls the scripts with the same command line. It + is built with the following arguments. +

      +

        +
      • --uid userid + + This is the userid of the new account +
      • +
      • --name full name + + This is the full name (the gecos field) of the account. +
      • +
      • --basehome dir + + This is the directory where new accounts are created. This can + be used by archiving commands to create archives. The + sample accountarchive.sh (see Pre-delete command below) is + using that to reach the oldaccounts sub-directory. +
      • +
      • --home home_directory + + This is the home directory of the account. Note that the home + is supplied without the first /. It is supplied as a relative + path. This helps commands such as tar which complain when + supplied with an absolute path. So doing a cd / at + the beginning of your command is recommended.. +
      • +
      • --domain domain + + This is either / or the virtual email domain. From this + the proper in-box mail file may be computed. +
      • +
      +

      +

      +

      4.2 Delete account command +

      + +

      This command (if non empty) is used to delete the account data: the + HOME directory and the mail inbox folder. When you delete an account, + a pop-up dialog lets you pick the proper action: Archive the data, + delete or leave in place. + A default delete command is supplied, but you can define a new one. +

      +

      4.3 Archive account command +

      + +

      A default archiving command is supplied. It preserves the HOME + directory and the mail inbox folder in a compressed tar file. This + file is stored in /home/oldaccounts. The name of the file has the + following format +

      +

      +
      +         user-YYYY-MM-DD-PID.tar.gz
      +         
      + 
      +
      +

      The PID is simply the process ID of the archive command. This is used + to make the name fully unique. +

      Files archived in /home/oldaccounts are left there forever. You may + want to clean out the old ones from time to time, according to the + administration policies applying to your organization. +

      You can use this field to specify your own archiving command. +

      +

      4.4 Post-create command +

      + +

      Each time you create a user account, a command may be executed. You + must specify here the absolute path of the command as well as any + arguments. +

      Note that this command is called after the account has been created + and committed in the password database (/etc/passwd). The + output and error codes of the command are logged in the + "Linuxconf's logs". +

      +

      4.5 Pre-delete command +

      + +

      You can specify a command which is executed before the account + is removed from the password database (/etc/passwd). + Output and error codes are also logged. If any error is detected, the + user will be allowed to see the logs and will be asked if the accounts + should be deleted. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/password-5.html linuxconf-1.15/help.files/se/userconf/password-5.html *** linuxconf-1.14r4/help.files/se/userconf/password-5.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/password-5.html Fri Apr 2 17:53:26 1999 *************** *** 0 **** --- 1,29 ---- + + + + + Password setting policies: Account defaults + + + + + Next + Previous + Contents +
      +

      5. Account defaults

      + +

      When using shadow passwords, you have control of both the + password expiration date and also of the account expiration date. + You can set defaults here. They will be used to setup new accounts. +

      Note that this section only shows up if you have enabled shadow + password. Some linux distributions do not support shadow passwords. + Others do not install them by default. Linuxconf adapts + to this situation on the fly. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/password.html linuxconf-1.15/help.files/se/userconf/password.html *** linuxconf-1.14r4/help.files/se/userconf/password.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/password.html Fri Apr 2 17:53:26 1999 *************** *** 0 **** --- 1,45 ---- + + + + + Password setting policies + + + + + + Next + Previous + Contents +
      +

      Password setting policies

      + +

      Introduction

      +

      +

      1. Policies for password

      + +

      +

      2. Private group

      + +

      +

      3. Default base dir for homes

      + +

      +

      4. User defined account management commands

      + + +

      +

      5. Account defaults

      + +
      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/password.sgml linuxconf-1.15/help.files/se/userconf/password.sgml *** linuxconf-1.14r4/help.files/se/userconf/password.sgml Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/password.sgml Thu Apr 15 17:40:40 1999 *************** *** 0 **** --- 1,145 ---- + +
      + Regler för lösenord + <author>Inledning + + <sect>Regler för lösenord + <p> + Här kan man ange vad som är godtagbart som lösenord. Du kan ange + den minsta längden och det minsta antalet ej alfabetiska tecken. + Genom att påtvinga att lösenord konstrueras med andra tecken, så + uppmuntras ett bättre val av lösenord (svårare att gissa och forcera). + <p> + Observera att dett inte gäller för PAM-system (som t ex <em/RedHat 5/). + PAM har egna lösenordsregler. + + <sect>Privat grupp + <p> + När denna regel är aktiv så kommer <em/Linuxconf/ att skapa + en grupp som har samma nummer som användaren (såvida grupp + utelämnas). Dialogen för uppläggning av nya användare visas med + blankt gruppfält. + + När det inte är aktiverat, så tilldelar <em/Linuxconf/ en förinställd + grupp till nya användare. + + Denna regel är inte aktuell för speciella användare som POP och + PPP, efterssom dessa användare ingår i speciella grupper (popusers + och pppusers). + + Observera också att denna regel inte hindrar dig från att sätta en annan + önskad grupp. Om gruppen inte finns tidigare, så ges möjlighet att + skapa den direkt. + + <sect>Katalog där hemkataloger placeras + <p> + Ange katalog där användarnas kataloger ska placeras. Grundvärde är + /home. + + <sect>Användardefinierade kommandon för användaradministration + <p> + När <em/Linuxconf/ skapar eller tar bort användare, så startas olika + skript. Detta kan överstyras genom att ange filnamn till egna versioner. + Man kan också sätta dessa ur spel genom att ta bort skript-namnen. + <em/Linuxconf/ har förinställda värden för några av dessa skript. + + <sect1>Kommandoradsalternativ + <p> + <em/Linuxconf/ startar alltid skripten med samma kommandorad. Den byggs + upp med följande argument: + + <itemize> + <item>--uid användarnummer + + Detta är användarnumret för det nya kontot. + + <item>--name fullständigt_namn + + Detta är det personens fullständiga namn i kontot. + + <item>--basehome katalog + + Det är i denna katalog som nya konton läggs in. Detta kan + användas av arkiveringskommandon för att skapa arkiv. + Exempelskriptet "accountarchive.sh" (se "Kommando för körning + innan borttagning" nedan) använder detta för att hitta + den gamla underkatalogen. + + <item>--home hemkatalog + + Detta är användarkontots hemkatalog. Observera att hemkatalogen + ges utan inledande "/". Det tillhandahålls som en relativ + sökväg. Detta underlättar för kommandon som t ex tar, som + klagar när det får en absolut sökväg. Att göra <tt>cd /</tt> + i början av ditt kommandoskript rekommenderas. + + <item>--domain domän + + Detta är antingen "/" eller en virtuell e-postdomän. Med + utgångspunkt från detta kan den verkliga brevlåda tas + fram. + + </itemize> + + + <sect1>Kommando för borttagning av användare + <p> + Detta kommado (om det är ifyllt) används för att ta bort användarens + filer: Hemkatalog och brevlåda. När en användare tas bort så + ställs frågan om filerna ska arkiveras, tas bort eller lämnas kvar. + Ett standardkommando för borttagning finns tillgängligt, men det + går bra att använda ett annat. + + <sect1>Kommando för arkivering av användare + <p> + #here + A default archiving command is supplied. It preserves the HOME + directory and the mail inbox folder in a compressed tar file. This + file is stored in /home/oldaccounts. The name of the file has the + following format + + <tscreen><verb> + user-YYYY-MM-DD-PID.tar.gz + </verb></tscreen> + + The PID is simply the process ID of the archive command. This is used + to make the name fully unique. + + Files archived in /home/oldaccounts are left there forever. You may + want to clean out the old ones from time to time, according to the + administration policies applying to your organization. + + You can use this field to specify your own archiving command. + + <sect1>Kommando efter uppläggning + <p> + Each time you create a user account, a command may be executed. You + must specify here the absolute path of the command as well as any + arguments. + + Note that this command is called after the account has been created + and committed in the password database (<tt>/etc/passwd</tt>). The + output and error codes of the command are logged in the + "Linuxconf's logs". + + <sect1>Kommando innan borttagning + <p> + You can specify a command which is executed before the account + is removed from the password database (<tt>/etc/passwd</tt>). + Output and error codes are also logged. If any error is detected, the + user will be allowed to see the logs and will be asked if the accounts + should be deleted. + + <sect>Account defaults + <p> + When using shadow passwords, you have control of both the + password expiration date and also of the account expiration date. + You can set defaults here. They will be used to setup new accounts. + <p> + Note that this section only shows up if you have enabled shadow + password. Some linux distributions do not support shadow passwords. + Others do not install them by default. Linuxconf adapts + to this situation on the fly. + + </article> + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/shells-1.html linuxconf-1.15/help.files/se/userconf/shells-1.html *** linuxconf-1.14r4/help.files/se/userconf/shells-1.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/shells-1.html Fri Apr 2 17:53:34 1999 *************** *** 0 **** --- 1,27 ---- + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> + <HTML> + <HEAD> + <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> + <TITLE>Available shells: Introduction + + + + + + Next + Previous + Contents +
      +

      1. Introduction

      + +

      Each user account is associated with a login shell. A shell is + a command line interpreter or simply the first command executed + when the user logs in. These commands or shells must be defined + here first to become selectable in the user account dialogs. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/shells-2.html linuxconf-1.15/help.files/se/userconf/shells-2.html *** linuxconf-1.14r4/help.files/se/userconf/shells-2.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/shells-2.html Fri Apr 2 17:53:34 1999 *************** *** 0 **** --- 1,38 ---- + + + + + Available shells: The dialog + + + + + + Next + Previous + Contents +
      +

      2. The dialog

      + +

      You must define the default shell. This will be used to setup + the dialog for new accounts. The rest of the dialog is simply + an enumeration of the available shells, in no specific order. +

      +

      2.1 The Add button +

      + +

      The Add button grows the dialog by one line, allowing you to add + more shells if needed. +

      +

      2.2 Adding shells +

      + +

      When you add a new shell in the dialog, make sure the + shell already exists and is executable. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/shells-3.html linuxconf-1.15/help.files/se/userconf/shells-3.html *** linuxconf-1.14r4/help.files/se/userconf/shells-3.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/shells-3.html Fri Apr 2 17:53:34 1999 *************** *** 0 **** --- 1,26 ---- + + + + + Available shells: Available PPP/SLIP shells + + + + + Next + Previous + Contents +
      +

      3. Available PPP/SLIP shells

      + +

      Usually there are scripts which trigger the proper networking + commands. One script is supplied with Linuxconf: + /usr/lib/linuxconf/lib/ppplogin. You may want to define + others with different PPP or SLIP parameters. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/shells.html linuxconf-1.15/help.files/se/userconf/shells.html *** linuxconf-1.14r4/help.files/se/userconf/shells.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/shells.html Fri Apr 2 17:53:34 1999 *************** *** 0 **** --- 1,36 ---- + + + + + Available shells + + + + + + Next + Previous + Contents +
      +

      Available shells

      + +

      Introduction

      +

      +

      1. Introduction

      + +

      +

      2. The dialog

      + + +

      +

      3. Available PPP/SLIP shells

      + +
      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/shells.sgml linuxconf-1.15/help.files/se/userconf/shells.sgml *** linuxconf-1.14r4/help.files/se/userconf/shells.sgml Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/shells.sgml Fri Apr 2 17:30:52 1999 *************** *** 0 **** --- 1,37 ---- + +
      + Available shells + <author>Introduction + + <sect>Introduction + <p> + Each user account is associated with a login shell. A shell is + a command line interpreter or simply the first command executed + when the user logs in. These commands or shells must be defined + here first to become selectable in the user account dialogs. + + <sect>The dialog + <p> + You must define the default shell. This will be used to setup + the dialog for new accounts. The rest of the dialog is simply + an enumeration of the available shells, in no specific order. + + <sect1>The Add button + <p> + The Add button grows the dialog by one line, allowing you to add + more shells if needed. + + <sect1>Adding shells + <p> + When you add a new shell in the dialog, make sure the + shell already exists and is executable. + + <sect>Available PPP/SLIP shells + <p> + Usually there are scripts which trigger the proper networking + commands. One script is supplied with Linuxconf: + <tt>/usr/lib/linuxconf/lib/ppplogin</tt>. You may want to define + others with different PPP or SLIP parameters. + + </article> + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/user-1.html linuxconf-1.15/help.files/se/userconf/user-1.html *** linuxconf-1.14r4/help.files/se/userconf/user-1.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/user-1.html Fri Apr 2 17:53:41 1999 *************** *** 0 **** --- 1,24 ---- + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> + <HTML> + <HEAD> + <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> + <TITLE>user account definition: Not done yet! + + + + + Next + Previous + Contents +
      +

      1. Not done yet!

      + +

      +

      +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/user.html linuxconf-1.15/help.files/se/userconf/user.html *** linuxconf-1.14r4/help.files/se/userconf/user.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/user.html Fri Apr 2 17:53:41 1999 *************** *** 0 **** --- 1,26 ---- + + + + + user account definition + + + + + + Next + Previous + Contents +
      +

      user account definition

      + +

      Introduction

      +

      +

      1. Not done yet!

      + +
      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/user.sgml linuxconf-1.15/help.files/se/userconf/user.sgml *** linuxconf-1.14r4/help.files/se/userconf/user.sgml Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/user.sgml Fri Apr 2 17:30:52 1999 *************** *** 0 **** --- 1,12 ---- + + +
      + user account definition + <author>Introduction + + <sect>Not done yet! + <p> + + + </article> + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/users-1.html linuxconf-1.15/help.files/se/userconf/users-1.html *** linuxconf-1.14r4/help.files/se/userconf/users-1.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/users-1.html Fri Apr 2 17:53:50 1999 *************** *** 0 **** --- 1,39 ---- + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> + <HTML> + <HEAD> + <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9"> + <TITLE>user accounts: Normal accounts + + + + + + Next + Previous + Contents +
      +

      1. Normal accounts

      + +

      +

      1.1 Edit/Create user accounts +

      + +

      This is the menu to use to create normal shell accounts. +

      +

      1.2 group definitions +

      + +

      Users are member of groups. Use this menu to create and manage + groups. +

      +

      1.3 Change root password +

      + +

      Use this menu to change the superuser password (root) +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/users-2.html linuxconf-1.15/help.files/se/userconf/users-2.html *** linuxconf-1.14r4/help.files/se/userconf/users-2.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/users-2.html Fri Apr 2 17:53:50 1999 *************** *** 0 **** --- 1,82 ---- + + + + + user accounts: Special accounts + + + + + + Next + Previous + Contents +
      +

      2. Special accounts

      + +

      Many user accounts are used to control specific tasks. These accounts + are special purpose. They have a user ID and belong to a group. They + also have a password. These accounts are not meant for human beings + though. +

      +

      2.1 Edit/Create PPP accounts via normal login +

      + +

      These accounts let a remote machine connect and establish a network + connection using the PPP protocol. The remote system must identify + itself using a standard chat sequence, sending its user name followed + by a password. +

      +

      2.2 PPP accounts via PAP authentication +

      + +

      +

      These accounts are meant for authentication using the PAP protocol. + The user name and password are exchanged using a special protocol + defined in the PPP standard. +

      +

      2.3 PPP accounts via CHAP authentication +

      + +

      Same as for the PPP accounts above, except that a different, more + secure, protocol is used to exchange authentication. +

      +

      2.4 SLIP accounts via normal login +

      + +

      SLIP is another way of establishing a network connection between two + computers over a serial line (modem). +

      +

      2.5 UUCP account +

      + +

      UUCP is the Unix to Unix Communication Protocol. This is a batch + oriented data transfer. It allows unattended exchange of files (and + email) between two computers. It provides a very inexpensive but + highly reliable way to automate data exchange. It is probably the + best way (by far) to receive and send email on the internet unless + you have a dedicated connection with your service provider. +

      See the networking section of Linuxconf to configure UUCP. +

      +

      2.6 POP accounts (mail only) +

      + +

      POP acccounts are restricted accounts. Users can't get a shell. They + are generally used to retrieve email using the POP (Post Office + Protocol). They can also be used to connect to other services such + as Samba (file and print service for PCs machines). +

      +

      2.7 Virtual POP accounts (mail only) +

      + +

      These accounts are even more restricted. They allow retrieval + of email using the POP protocol, from virtual email domains. See + the menu "Networking/mail delivery system (sendmail)" to configure + virtual email domains. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/users-3.html linuxconf-1.15/help.files/se/userconf/users-3.html *** linuxconf-1.14r4/help.files/se/userconf/users-3.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/users-3.html Fri Apr 2 17:53:50 1999 *************** *** 0 **** --- 1,36 ---- + + + + + user accounts: Email aliases + + + + + + Next + Previous + Contents +
      +

      3. Email aliases

      + +

      Email aliases may be considered special virtual user accounts. They + allow the redirection of email from one account (which may or may + not exist) to one or more other email addresses. +

      +

      3.1 Edit/Create main domain user aliases +

      + +

      Use this to manage aliases for the main email domain. +

      +

      3.2 virtual domain user aliases +

      + +

      This lets you do the same for each virtual email domain. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/users-4.html linuxconf-1.15/help.files/se/userconf/users-4.html *** linuxconf-1.14r4/help.files/se/userconf/users-4.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/users-4.html Fri Apr 2 17:53:51 1999 *************** *** 0 **** --- 1,48 ---- + + + + + user accounts: Other stuff + + + + + Next + Previous + Contents +
      +

      4. Other stuff

      + +

      +

      4.1 Password & account policies +

      + +

      You can control the rules for password validation and some + default operating parameters associated with the accounts. +

      +

      4.2 Policies for virtual domains +

      + +

      You can specify defaults on a virtual per virtual domain basis. +

      +

      4.3 Available user shells +

      + +

      Many shells are available in Linux. You define them here. +

      +

      4.4 Available PPP shells +

      + +

      These shells control the parameters of a PPP session. +

      +

      4.5 Available SLIP shells +

      + +

      These shells control the parameters of a SLIP session. +

      +


      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/users.html linuxconf-1.15/help.files/se/userconf/users.html *** linuxconf-1.14r4/help.files/se/userconf/users.html Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/users.html Fri Apr 2 17:53:51 1999 *************** *** 0 **** --- 1,65 ---- + + + + + user accounts + + + + + + Next + Previous + Contents +
      +

      user accounts

      + +

      Introduction

      +


      + User accounts in Linux are all stored in the same database. + Linuxconf splits these accounts into different categories based + on known practices. Each category has its own menu entry. +
      +

      +

      1. Normal accounts

      + + +

      +

      2. Special accounts

      + + +

      +

      3. Email aliases

      + + +

      +

      4. Other stuff

      + + +
      + Next + Previous + Contents + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/se/userconf/users.sgml linuxconf-1.15/help.files/se/userconf/users.sgml *** linuxconf-1.14r4/help.files/se/userconf/users.sgml Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/help.files/se/userconf/users.sgml Fri Apr 2 17:30:52 1999 *************** *** 0 **** --- 1,122 ---- + +
      + user accounts + <author>Introduction + + <abstract> + User accounts in <em/Linux/ are all stored in the same database. + <em/Linuxconf/ splits these accounts into different categories based + on known practices. Each category has its own menu entry. + </abstract> + + + <sect>Normal accounts + <p> + <sect1>Edit/Create user accounts + + <p> This is the menu to use to create normal shell accounts. + + <sect1>group definitions + + <p> Users are member of groups. Use this menu to create and manage + groups. + + <sect1>Change root password + + <p> Use this menu to change the superuser password (root) + + <sect>Special accounts + <p> + Many user accounts are used to control specific tasks. These accounts + are special purpose. They have a user ID and belong to a group. They + also have a password. These accounts are not meant for human beings + though. + + <sect1>Edit/Create PPP accounts via normal login + <p> + These accounts let a remote machine connect and establish a network + connection using the PPP protocol. The remote system must identify + itself using a standard chat sequence, sending its user name followed + by a password. + + <sect1>PPP accounts via PAP authentication + <p> + + These accounts are meant for authentication using the PAP protocol. + The user name and password are exchanged using a special protocol + defined in the PPP standard. + + <sect1>PPP accounts via CHAP authentication + <p> + Same as for the PPP accounts above, except that a different, more + secure, protocol is used to exchange authentication. + + <sect1>SLIP accounts via normal login + <p> + SLIP is another way of establishing a network connection between two + computers over a serial line (modem). + + <sect1>UUCP account + <p> + UUCP is the Unix to Unix Communication Protocol. This is a batch + oriented data transfer. It allows unattended exchange of files (and + email) between two computers. It provides a very inexpensive but + highly reliable way to automate data exchange. It is probably the + best way (by far) to receive and send email on the internet unless + you have a dedicated connection with your service provider. + + See the networking section of <em/Linuxconf/ to configure UUCP. + + <sect1>POP accounts (mail only) + + <p> POP acccounts are restricted accounts. Users can't get a shell. They + are generally used to retrieve email using the POP (Post Office + Protocol). They can also be used to connect to other services such + as Samba (file and print service for PCs machines). + + <sect1>Virtual POP accounts (mail only) + + <p> These accounts are even more restricted. They allow retrieval + of email using the POP protocol, from virtual email domains. See + the menu "Networking/mail delivery system (sendmail)" to configure + virtual email domains. + + <sect>Email aliases + <p> + Email aliases may be considered special virtual user accounts. They + allow the redirection of email from one account (which may or may + not exist) to one or more other email addresses. + + <sect1>Edit/Create main domain user aliases + + <p> Use this to manage aliases for the main email domain. + + <sect1>virtual domain user aliases + + <p> This lets you do the same for each virtual email domain. + + <sect>Other stuff + <p> + <sect1>Password & account policies + + <p> You can control the rules for password validation and some + default operating parameters associated with the accounts. + + <sect1>Policies for virtual domains + + <p> You can specify defaults on a virtual per virtual domain basis. + + <sect1>Available user shells + + <p> Many shells are available in <em/Linux/. You define them here. + + <sect1>Available PPP shells + + <p> These shells control the parameters of a PPP session. + + <sect1>Available SLIP shells + + <p> These shells control the parameters of a SLIP session. + + </article> + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/sk/main/intro-1.html linuxconf-1.15/help.files/sk/main/intro-1.html *** linuxconf-1.14r4/help.files/sk/main/intro-1.html Mon Mar 1 13:30:23 1999 --- linuxconf-1.15/help.files/sk/main/intro-1.html Thu Apr 15 19:01:44 1999 *************** *** 4,8 **** <META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.6"> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-2"> ! <TITLE>Linuxconf 1.13: Èo je to linuxconf --- 4,8 ---- ! Linuxconf 1.14: Èo je to linuxconf diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/help.files/sk/main/introweb.html linuxconf-1.15/help.files/sk/main/introweb.html *** linuxconf-1.14r4/help.files/sk/main/introweb.html Thu Apr 8 22:56:19 1999 --- linuxconf-1.15/help.files/sk/main/introweb.html Sun Apr 18 10:04:24 1999 *************** *** 2,9 **** ! Linuxconf 1.14r4 !

      Linuxconf 1.14r4


      1. Èo je Linuxconf

      --- 2,9 ---- ! Linuxconf 1.15 !

      Linuxconf 1.15


      1. Èo je Linuxconf

      diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/main/main.cc linuxconf-1.15/main/main.cc *** linuxconf-1.14r4/main/main.cc Tue Feb 2 17:54:10 1999 --- linuxconf-1.15/main/main.cc Mon Apr 19 08:55:09 1999 *************** *** 133,136 **** --- 133,143 ---- char *pta = argv0; char *pt = argv[0]; + // Make sure no error may stop linuxconf normal startup + // so we put a 15 seconds timeout + // This was created because sometime, after updating linuxconf + // a module becomes incompatible and an error pops up at load time. + // If linuxconf is called at boot time, then things go wrong... + // The timeout prevent this. + dialog_settimeout (15,MENU_ESCAPE,true); main_loaddict(); module_loaddistmod(); *************** *** 198,201 **** --- 205,210 ---- module_load(); dropin_module_load(); + dialog_settimeout (-1,MENU_ESCAPE,false); + if (strcmp(argv0,"askrunlevel")==0){ if (getuid()!=0){ *************** *** 269,272 **** --- 278,285 ---- usage(); }else{ + // xconf_notice ("allo comment ca va le monde et toi encore" + // " va tu à l'école le lundi, le mardi ou le mercredi." + // "Moi, juste le mercredi\n" + // "et parfois le jeudi"); linuxconf_main(0); } Binary files linuxconf-1.14r4/manager/manager and linuxconf-1.15/manager/manager differ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/manager/manager.cc linuxconf-1.15/manager/manager.cc *** linuxconf-1.14r4/manager/manager.cc Thu Dec 4 21:04:15 1997 --- linuxconf-1.15/manager/manager.cc Wed Apr 14 00:36:58 1999 *************** *** 2,6 **** #include #include ! /*#include */ #include #include --- 2,6 ---- #include #include ! #include #include #include *************** *** 50,54 **** }else{ struct sockaddr_un unc; ! int len = sizeof(unc); unc.sun_family = AF_UNIX; int s = accept (fd,(struct sockaddr*)&unc,&len); --- 50,54 ---- }else{ struct sockaddr_un unc; ! size_t len = sizeof(unc); unc.sun_family = AF_UNIX; int s = accept (fd,(struct sockaddr*)&unc,&len); *************** *** 64,77 **** } ! static int manager_sendfd(int sock, int f0, int f1) { ! char bufctl[sizeof(struct cmsghdr)+2*sizeof(int)]; struct cmsghdr *c = (struct cmsghdr*)bufctl; c->cmsg_len = sizeof(bufctl); c->cmsg_level = SOL_SOCKET; c->cmsg_type = SCM_RIGHTS; ! int *fds = (int*)c->cmsg_data; ! fds[0] = f0; ! fds[1] = f1; struct msghdr h; --- 64,76 ---- } ! static int manager_sendfd(int sock, int fd) { ! char bufctl[sizeof(struct cmsghdr)+1*sizeof(int)]; struct cmsghdr *c = (struct cmsghdr*)bufctl; c->cmsg_len = sizeof(bufctl); c->cmsg_level = SOL_SOCKET; c->cmsg_type = SCM_RIGHTS; ! int *fds = (int*)CMSG_DATA(c); ! fds[0] = fd; struct msghdr h; *************** *** 106,110 **** int fd = manager_client(sockn); if (fd != -1){ ! manager_sendfd (fd,0,1); #if 1 for (int i=0; i<10; i++){ --- 105,109 ---- int fd = manager_client(sockn); if (fd != -1){ ! manager_sendfd (fd,1); #if 1 for (int i=0; i<10; i++){ *************** *** 112,116 **** printf (" "); fflush (stdout); fgets (buf,sizeof(buf)-1,stdin); ! write (fd,"hello",5); } #endif --- 111,115 ---- printf (" "); fflush (stdout); fgets (buf,sizeof(buf)-1,stdin); ! write (fd,"hello ",6); } #endif *************** *** 120,125 **** --- 119,138 ---- if (fd != -1){ printf ("Connect ok\n"); + size_t len = 1000; + char buffer[1000]; + if (getpeername (fd,(struct sockaddr*)buffer,&len)!=-1){ + printf ("peername %d\n",len); + for (int i=0; icmsg_level == SOL_SOCKET ! && c->cmsg_type == SCM_RIGHTS){ ! printf ("fd passing\n"); } } --- 146,180 ---- h.msg_control = bufctl; h.msg_controllen = sizeof(bufctl); + struct cmsghdr *c = (struct cmsghdr*) bufctl; + c->cmsg_len = sizeof(bufctl); + //c->cmsg_level = SOL_SOCKET; + //c->cmsg_type = SCM_RIGHTS; h.msg_flags = 0; int len = recvmsg (fd,&h,0); ! if (len<=0){ perror ("recvmsg"); break; }else{ printf ("message recu flags %d len %d %d %u\n" ,h.msg_flags,len ,h.msg_controllen,sizeof(bufctl)); ! printf ("iov.len %d\n",iov[0].iov_len); ! buf[len] = '\0'; ! printf ("buf = :%s:\n",buf); ! printf ("msg_len %d msg_level %d msg_type %d\n" ! ,c->cmsg_len ! ,c->cmsg_level ! ,c->cmsg_type); ! /* ! On kernel 2.2, we can check that ! On kernel 2.0, we can only tell if there is ! a descriptor if it is != -1 ! if (c->cmsg_level == SOL_SOCKET ! && c->cmsg_type == SCM_RIGHTS){ ! */ ! int *fd = (int*)CMSG_DATA(c); ! for (int i=0; i<20 && fd[i] != -1; i++){ ! printf ("fd passing %d\n",fd[i]); ! write (fd[i],"pass\n",5); } } diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/apache.dic linuxconf-1.15/messages/bg5/apache.dic *** linuxconf-1.14r4/messages/bg5/apache.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/apache.dic Tue Apr 13 04:15:01 1999 *************** *** 0 **** --- 1,257 ---- + @version 0 + # *** new message + !M_DEFAULT + :E Defaults + :T ¹w³]¡@ + # *** new message + !M_DOMAINS + :E Virtual domains + :T µêÀÀºô°ì¡@ + # *** new message + !M_SUBDIRS + :E Sub-directory specs + :T ¤l¥Ø¿ý³W®æ¡@ + # *** new message + !T_APACHE + :E Apache administration + :T Apache ºÞ²z¡@ + # *** new message + !I_APACHE + :E This menu allows to configure the Apache web server + :T ³oµæ³æ¥i¥H³]©w Apache ºô¯¸¡@ + # *** new message + !M_APACHE + :E Apache Web server + :T Apache ºô¯¸¡@ + # *** new message + !T_TUNING + :E Tuning + :T ·L½Õ¡@ + # *** new message + !T_APACHEDEF + :E Apache defaults + :T Apache ¹w³]¡@ + # *** new message + !I_APACHEDEF + :E You can configure the base setup and\nsome defaults + :T §A¥i¥H³]©w°ò¥»°t¸m¤Î¡@\n¤@¨Ç¹w³]¡@ + # *** new message + !F_LISTENPORT + :E Listen on port + :T ºÊÅ¥°ð¡@ + # *** new message + !F_STARTSERVERS + :E Start servers + :T ±Ò°Ê¦øªA¾¹¡@ + # *** new message + !F_MAXCLIENTS + :E Max clients per servers + :T ¨C¦øªA¾¹³Ì¤j«È¤á¼Æ¡@ + # *** new message + !F_MAXREQUESTS + :E Max requests per child + :T ¨C­Ó¤l¤u§Çªº­n¨D¡@ + # *** new message + !F_MINSPARESERVERS + :E Minimum of spare servers + :T ³Ì¤ÖªºªÅ¶¢¦øªA¾¹¡@ + # *** new message + !F_MAXSPARESERVERS + :E Maximum of spare servers + :T ³Ì¤jªºªÅ¶¢¦øªA¾¹¡@ + # *** new message + !F_PIDFILE + :E Pid file + :T Pid ÀÉ¡@ + # *** new message + !F_UID + :E Execute as user + :T ¹B¦æªº¥Î¤á¡@ + # *** new message + !F_GID + :E Execute as group + :T ¹B¦æªº¸s²Õ¡@ + # *** new message + !T_FEATURES + :E Features + :T ¥\\¯à¡@ + # *** new message + !I_INDEXES + :E Indexes + :T ¯Á¤Þ¡@ + # *** new message + !I_FOLLOWSYMLINK + :E May follow symlinks + :T ¥i¸ò symlinks¡@ + # *** new message + !I_HOSTNAMELOOKUPS + :E Host name lookups + :T ¥D¾÷¦W·j´M¡@ + # *** new message + !F_TIMEOUT + :E Connection timeout + :T ³s½u¹O®É¡@ + # *** new message + !F_SERVERADMIN + :E Administrator email + :T ºÞ²z­û¹q¶l¡@ + # *** new message + !F_SERVERNAME + :E Server name + :T ¦øªA¾¹¦WºÙ¡@ + # *** new message + !F_DOCUMENTROOT + :E Document root + # *** new message + !F_ERRLOG + :E Error log + :T ¿ù»~°O¿ýÀÉ¡@ + # *** new message + !F_TRANSFERLOG + :E Transfer log + :T ¶Ç°e°O¿ýÀÉ¡@ + # *** new message + !F_AGENTLOG + :E Agent log + :T ¥N²z¤H°O¿ýÀÉ¡@ + # *** new message + !F_PATH + :E Directory path + :T ¥Ø¿ý¸ô®|¡@ + # *** new message + !T_DIRRULES + :E Directory rules + :T ¥Ø¿ý³W«h¡@ + # *** new message + !I_DIRRULES + :E You are allowed to enter configurations\n + +whîch apply to this directory and its sub-directories\n + :T §A¥i¥H¦b³o¥Ø¿ý¤Î¤l¥Ø¿ý¤U¡@\n + +¿é¤J³]©w¡@\n + # *** new message + !I_NEWDIR + :E Select [Add] to add a new directory rule + :T ¿ï [·s¼W] ·s¼W¤@¥Ø¿ý³W«h¡@ + # *** new message + !T_DIRS + :E Directories + :T ¥Ø¿ý¡@ + # *** new message + !I_DIRS + :E You can override various rules directory\nper directory + :T §A¥i¥H¦b¨C¤@¥Ø¿ý¤UÂмg¡@\n¤£¦P¥Ø¿ý³W«h¡@ + # *** new message + !F_VDOMNAME + :E Virtual host name + :T µêÀÀ¥D¾÷¦W¡@ + # *** new message + !T_VDOMAIN + :E Virtual host setup + :T µêÀÀ¥D¾÷°t¸m¡@ + # *** new message + !I_NEWDOMAIN + :E Select [Add] to add a new virtual domain + :T ¿ï [·s¼W] ·s¼W¤@µêÀÀºô°ì¡@ + # *** new message + !T_DOMAINS + :E Virtual domains + :T µêÀÀºô°ì¡@ + # *** new message + !I_DOMAINS + :E You can define multiple independant virtual\ndomains on this server + :T §A¥i¥H¦b³o­Ó¦øªA¾¹¡@\n©w¸q¦h­Ó¿W¥ßµêÀÀºô°ì¡@ + # *** new message + !I_VDOMAIN + :E You are allowed to enter configurations\nfor a virtual host/domain\n + :T §A¥i¥H¦bµêÀÀ¥D¾÷/ºô°ì¤U¡@\n¿é¤J³]©w¡@\n + # *** new message + !F_REFERERLOG + :E Referer log + :T °Ñ¦ÒÀɰO¿ý¡@ + # *** new message + !E_UNKNOWNDIR + :E Unknown scope directive: %s + :T ¤£©ú«ü¥O½d³ò: %s¡@ + # *** new message + !T_PRIVIAPACHE + :E Apache administration + :T Apache ºÞ²z¡@ + # *** new message + !T_SERVICES + :E 1-Services + :T 1-ªA°È¡@ + # *** new message + !I_INCLUDES + :E Server side includes + # *** new message + !I_INCLUDESNOEXEC + :E IncludesNOEXEC + # *** new message + !I_EXECCGI + :E May execute CGI + # *** new message + !I_FOLLOWOWNERSYMLINK + :E Follow symlink if owner matches + # *** new message + !I_MULTIVIEWS + :E Multi views + # *** new message + !T_OVERRIDE + :E Override policies + # *** new message + !I_AUTHCONFIG + :E Authentification configs + # *** new message + !I_FILEINFO + :E File info + # *** new message + !I_LIMIT + :E Limits + # *** new message + !I_OPTIONS + :E Options + # *** new message + !F_SERVERALIAS + :E Server aliases + # *** new message + !F_SCRIPTALIAS + :E Script Alias + # *** new message + !F_SETUIDUSER + :E CGI SetUID User + # *** new message + !F_SETUIDGROUP + :E CGI SetUID Group + # *** new message + !T_MVIRTUAL + :E web + # *** new message + !E_VHOSTEXIST + :E Virtual host %s\nis already configured\nfor the service http + :T µêÀÀ¥D¾÷ %s¡@\n¤w¸g³]©w¤F http ªA°È¡@ + # *** new message + !I_USAGE + :E module apache\n + +\n + + --help\n + + --addvhost hostname --root path\n + + --delvhost hostname\n + # *** new message + !E_HOSTEXIST + :E Apache: Virtual host %s already configured\n + :T Apache: µêÀÀ¥D¾÷ %s ¤w³]©w¤F¡@\n + # *** new message + !E_IVLDOPT + :E Invalid option %s\n + :T µL®Ä¿ï¶µ %s¡@\n + # *** new message + !E_MISSING + :E Apache: Virtual host %s is not configured\n + :T Apache: µêÀÀ¥D¾÷ %s ÁÙ¥¼³]©w¡@\n + # *** new message + !E_NOROOT + :E Apache: no root specified\n + :T Apache: ¨S¦³«ü©ú root¡@\n + # *** new message + !E_CREATEROOT + :E Can't create document root directory %s(%s)\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/askrunlevel.dic linuxconf-1.15/messages/bg5/askrunlevel.dic *** linuxconf-1.14r4/messages/bg5/askrunlevel.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/askrunlevel.dic Tue Apr 13 04:15:02 1999 *************** *** 0 **** --- 1,589 ---- + @version 6 + # *** new message + !E_GRAPH + :E Can't do this\nbecause the Graphic mode is not yet\nconfigured\n\n%s + :T ¤£¥i³o¼Ë¡@\n¦] Graphic ¼Ò¦¡ÁÙ¥¼¡@\n³]©w¡@\n\n%s¡@ + # *** new message + !E_GRAPHNET + :E Can't do this\n + +because the Graphic mode\n + +and the Networking are not yet\n + +configured\n + +\n + +%s\n + +\n + +%s + :T ¤£¥i³o¼Ë¡@\n¡@ + +¦] Graphic ¼Ò¦¡¡@\n + +¤Îºô¸ôÁÙ¥¼¡@\n + +³]©w¡@\n + +\n + +%s\n + +\n + +%s + # *** new message + !E_NET + :E Can't do this\nbecause the Networking is not yet\nconfigured\n\n%s + :T ¤£¥i³o¼Ë¡@\n¦]ºô¸ôÁÙ¥¼¡@\n³]©w¡@\n\n%s + # *** new message + !E_PROCUPTIME + :E Can't parse /proc/uptime\n + :T ¤£¯à¤ÀªR /proc/uptime¡@\n + # *** new message + !M_LILO + :E LILO defaults (Linux boot loader) + :T LILO ¹w³] (Linux °_°ÊÀÉ)¡@ + # *** new message + !M_DEFLILO + :E default boot configuration + :T ¹w³]°_°Ê³]©w¡@ + # *** new message + !M_NEWKERN + :E a new kernel + :T ·s®Ö¤ß¡@ + # *** new message + !M_COMPILED + :E a kernel you have compiled + :T ¤w½sĶªº®Ö¤ß¡@ + # *** new message + !M_DEFBOOT + :E default boot mode + :T ¹w³]°_°Ê¼Ò¦¡¡@ + # *** new message + !M_RUNLEVELS + :E runlevels + # *** new message + !M_CONFIG + :E Configure + :T ³]©w¡@ + # *** new message + !M_CHANGE + :E Change + :T Âà´«¡@ + # *** new message + !M_ADDLILO + :E Add to LILO + :T ¥[¦Ü LILO + # *** new message + !M_DEFINE + :E Define + :T ©w¸q¡@ + # *** new message + !T_BOOTCONF + :E Boot configuration + :T °_°Ê³]©w¡@ + # *** new message + !I_BOOTCONF + :E You are allowed to define the default\nboot mode of this computer + :T §A¥i¥H©w¸q³o¾÷ªº¹w³]¡@\n°_°Ê¼Ò¦¡¡@ + # *** new message + !E_TERMINFO + :E No valid TERM definition\r\n + +probably caused by an improper\r\n + +terminfo database.\r\n + :T ¨S¦³¦Xªk TERM ©w¸q¡@\r\n + +¥i¯à¥Ñ©ó¤@­Ó¤£·í¡@\r\n + +ªº terminfo ¸ê®Æ®w¡@ + # *** new message + !M_TWORKSTATION + :E the workstation + :T ¤u§@¯¸¡@ + # *** new message + !M_BOOTLOGS + :E the boot logs + :T °_°Ê°O¿ýÀÉ¡@ + # *** new message + !M_START + :E Start + :T ¶}©l¡@ + # *** new message + !M_VIEW + :E View + :T À˵ø¡@ + # *** new message + !I_SELONE + :E Select one of the operation mode below\n + +or configure the default mode.\n + +Current system profile version is '%s'. + :T ½Ð¦b¥H¤U¤u§@¼Ò¦¡¿ï¤@¡@\n + +©Î¦b¹w³]¼Ò¦¡³]©w¡@\n + +¥Ø«eªº¨t²Î·§­nª©¥»¬O '%s'¡@ + # *** new message + !I_WARN + :E \nUnless you select something within %d seconds\n\"%s\" will start automaticly + :T \n°£«D§A¦b %d ¬í¤º¿ï¬Y¶µ¡@\n\"%s\" ±N¦Û°Ê°_°Ê¡@ + # *** new message + !T_OPERMODE + :E Operation mode + :T ¹B¦æ¼Ò¦¡¡@ + # *** new message + !E_NOLOG + :E No log available + :T ¨S¦³°O¿ý¡@ + # *** new message + !T_BOOTLOG + :E boot log + :T °_°Ê°O¿ý¡@ + # *** new message + !I_BOOTLOG + :E These are the recording of the previous\nboot of this machine + :T ¥H¤U¬O¤§«e¥»¾÷¡@\nªº°_°Ê°O¿ý¡@ + # *** new message + !E_EMPTYLOG + :E Empty log + :T ªÅ¥Õ°O¿ý¡@ + # *** new message + !E_IVLDPATH + :E Invalid path of lilo.conf: %s\n + +expected something at least as long\n + +as %s\n + +and ending with %s + :T µL®Äªº lilo.conf: %s ¸ô®|¡@\n + +¹wºâ­n¨Dªø«×³Ì¤p %s¡@\n + +¤Î­n¥H %s µ²Éô¡@ + # *** new message + !F_ROOTPART + :E root partition + :T ®Ú¤À³Î°Ï¡@ + # *** new message + !F_RAMSIZE + :E Ramdisk size (opt) + :T Ramdisk ¤j¤p (¿ï¶µ)¡@ + # *** new message + !F_BOOTMODE + :E boot mode + :T °_°Ê¼Ò¦¡¡@ + # *** new message + !F_VGA + :E VGA mode + :T VGA ¼Ò¦¡¡@ + # *** new message + !F_NORMAL + :E normal + :T ¥¿±`¡@ + # *** new message + !F_STD8025 + :E standard 80x25 + :T ¼Ð·Ç 80x25¡@ + # *** new message + !F_BOOTOPT + :E Boot options + :T °_°Ê¿ï¶µ¡@ + # *** new message + !F_LILOUSED + :E LILO is used to boot this system + :T ³o¨t²Î¬O¥Î LILO °_°Ê¡@ + # *** new message + !F_INSTBOOT + :E Install boot sector on + :T ¦w¸Ë boot sector ¦b¡@ + # *** new message + !F_BOOTREC + :E boot record of the current root partition + :T ¥Ø«e root partition ªº°_°Ê°O¿ý¡@ + # *** new message + !F_MASTERIDE + :E Master boot record on IDE systems + :T IDE ¨t²Îªº Master boot record¡@ + # *** new message + !F_MASTERSCSI + :E Master boot record on SCSI systems + :T SCSI ¨t²Îªº Master boot record¡@ + # *** new message + !F_FD0 + :E /dev/fd0 + # *** new message + !F_BIOSMODE + :E Bios boot mode + :T Bios °_°Ê¼Ò¦¡¡@ + # *** new message + !F_BOOTDELAY + :E Boot delay in seconds + :T °_°Ê©µ¿ð(¬í)¡@ + # *** new message + !F_MSGFILE + :E Message file(opt) + :T Message ÀÉ(¿ï¶µ)¡@ + # *** new message + !T_DEFAULTS + :E Lilo defaults + :T Lilo ¹w³]¡@ + # *** new message + !F_LABEL + :E Label + :T ¼Ð°O¡@ + # *** new message + !F_KERNELIMAGE + :E Kernel image file + :T ®Ö¤ß image ÀÉ¡@ + # *** new message + !F_PARTBOOT + :E partition to boot + :T °_°Êªº partition¡@ + # *** new message + !E_IVLDPART + :E Partition %s is either invalid\nor not a linux partition\n + :T %s Partition ¬OµL®Ä©Î¡@\n®Ú¥»¨S¦³ linux partition¡@\n + # *** new message + !E_ROOTPNEED + :E You must specify the root partition + :T §A¤@©w«ü¥Ü root parition¡@ + # *** new message + !E_IVLSECTOR + :E Unusual partition or device for boot sector\n + +installation. This will probably yield a non\n + +bootable system. + :T ¤£´M±`ªº boot sector¦w¸Ëªº¤À³Î°Ï©Î³]³Æ¡@\n + +³o·|¤Þ¦Ü¤@¤£¯à°_°Êªº¡@\n + +¨t²Î.¡@ + # *** new message + !T_ACTLILO + :E Activating LILO configuration + :T °_°Ê LILO ³]©w¡@ + # *** new message + !Q_ACTLILO + :E Activating LILO change the way your\n + +machine is booting.\n + +Do I activate the configuration ? + :T §ó§ï LILO ±N·|ÂàÅÜ¥»¾÷ªº¡@\n + +°_°Ê¤èªk.¡@\n + +§Ú¥i¥H°_°Ê³o³]©w?¡@¡@ + # *** new message + !F_HOWBOOT + :E How it boots + :T «ç¼Ë°_°Ê¡@ + # *** new message + !F_NEWDEFAULT + :E new default bootable setup + :T ·sªº¹w³] bootable °t¸m¡@ + # *** new message + !F_REPLCUR + :E replace the current bootable setup + :T §ïÅܥثe bootable ªº°t¸m¡@ + # *** new message + !F_SELSETUP + :E selectable setup + :T ¥i¿ïªº°t¸m¡@ + # *** new message + !F_WHERETOCOPY + :E Where to copy the kernel file + :T ¦b¨º³B«þ¨©®Ö¤ßÀÉ¡@ + # *** new message + !F_OPTIONS + :E Options + :T ¿ï¶µ¡@ + # *** new message + !T_ADDINGKERN + :E Adding a new kernel to LILO + :T LILO ¥[¤J·s®Ö¤ß¡@ + # *** new message + !I_ADDINGKERN + :E You have already a working LILO\nand you want to upgrade your kernel + :T §A¤w¸g¦³¤@ working LILO¡@\n§A¤´­n§ó·s§Aªº®Ö¤ß¡@ + # *** new message + !E_KERNNEEDED + :E You must specify a kernel file + :T §A¥²»Ý«ü©w¤@®Ö¤ß¡@ + # *** new message + !E_LABELNEEDED + :E You must specify a label + :T §A¥²»Ý«ü©w¤@¼Ð°O¡@ + # *** new message + !E_LABELEXIST + :E The label is already used + :T ³o¼Ð°O¤w¥Î¡@ + # *** new message + !E_ENOENT + :E File %s does not exist + :T ÀÉ®× %s ¤£¦s¦b¡@ + # *** new message + !E_BADPATH + :E Bad path, must be under %s/ + :T ¿ù»~¸ô®|,¤@©w­n¦b %s/¡@ + # *** new message + !T_REPLACE + :E Replacing existing kernel file + :T ´À¥N¤@¦s¦bªº®Ö¤ßÀɮס@ + # *** new message + !I_REPLACE + :E ok to overwrite it ? + :T ¬O§_½T©wÂмg?¡@ + # *** new message + !E_NOCOMPILED + :E No kernel recently compiled available + :T ¨S¦³­è½sĶªº®Ö¤ß¡@¡@ + # *** new message + !T_DEFKERN + :E Default boot configuration + :T ¹w³]°_°Ê³]©w¡@ + # *** new message + !I_DEFKERN + :E Pick the configuration which will become\nthe default LILO configuration + :T ¿ï¤@³]©w¥i¥H§@¬°¡@\n¹w³]ªº LILO ³]©w¡@ + # *** new message + !M_GR_NET + :E Graphic & Network + :T Graphic ¤Îºô¸ô¡@ + # *** new message + !M_GRONLY + :E Graphic only + :T ¥u¦³ Graphic¡@ + # *** new message + !M_XTERMINAL + :E X terminal + :T X ²×ºÝ¾÷¡@ + # *** new message + !M_TX_NET + :E Text mode & Network + :T ¤å¥»¼Ò¦¡¤Îºô¸ô¡@ + # *** new message + !M_TXONLY + :E Text mode only + :T ¥u¦³¤å¥»¼Ò¦¡¡@ + # *** new message + !M_MAINTENANCE + :E Maintenance mode + :T ºû­×¼Ò¦¡¡@ + # *** new message + !M_NOTCONF + :E (Not configured) + :T (¨S¦³³]©w)¡@ + # *** new message + !P_BOOTMODE + :E change the boot mode + :T Âà´«°_°Ê¼Ò¦¡¡@ + # *** new message + !T_DEFOPER + :E Default operation mode + :T ¹w³]¹B§@¼Ò¦¡¡@ + # *** new message + !F_DELAY + :E Delay to activate + :T ©µ¿ð°_°Ê¡@ + # *** new message + !T_BOOTCMODE + :E Boot mode configuration + :T °_°Ê¼Ò¦¡³]©w¡@ + # *** new message + !I_BOOTCMODE + :E Select the default operation mode\n + +and a timeout. A timeout of 0 means\n + +to wait forever.\n + :T ¿ï¤@¹w³]¹B§@¼Ò¦¡¡@\n + +¤Î¹O®É. ¹O®É 0 ªí¥Ü¡@\n + +¥Ã»·µ¥«Ý¡@\n + # *** new message + !N_NOTCONF + :E This runlevel is not yet configured + :T ³o runlevel ÁÙ¥¼³]©w¡@ + # *** new message + !M_NONET + :E No network + :T ¨S¦³ºô¸ô¡@ + # *** new message + !M_CLIENT + :E Client + :T «È¤áºÝ¡@ + # *** new message + !M_SERVER + :E Server + :T ¦øªA¾¹¡@ + # *** new message + !M_TEXTMODE + :E Text mode + :T ¤å¥»¼Ò¦¡¡@ + # *** new message + !M_WORKSTATION + :E Workstation + :T ¤u§@¯¸¡@ + # *** new message + !M_XTERM + :E X terminal + :T X ²×ºÝ¾÷¡@ + # *** new message + !F_TITLE + :E Title + :T ¼ÐÃD¡@ + # *** new message + !F_RUNLEVEL + :E init runlevel + # *** new message + !F_NETMODE + :E Network mode + :T ºô¸ô¼Ò¦¡¡@ + # *** new message + !F_GRMODE + :E Graphic mode + :T Graphic ¼Ò¦¡¡@ + # *** new message + !T_RUNDEF + :E Runlevels definition + :T Runlevels ©w¸q¡@ + # *** new message + !I_RUNDEF + :E You are allowed to name\nthe different runlevel for this machine\n + :T §A¥i¥H¬°¤£¦Pªº¡@\n runlevel ©w¦W¡@ + # *** new message + !E_IVLDEF + :E Invalid definition + :T µL®Ä©w¸q¡@ + # *** new message + !E_IVLDELAY + :E Invalid delay + :T µL®Ä©µ¿ð¡@ + # *** new message + !E_SHORTDELAY + :E Delay too short, minimum 5 seconds + :T ©µ¿ð¤Óµu, ³Ì¤p 5 ¬í¡@ + # *** new message + !T_VERBOSE + :E Verbose level + # *** new message + !F_SECTION + :E Sections + :T °Ï¬q¡@ + # *** new message + !F_COMMAND + :E Commands + :T ©R¥O¡@ + # *** new message + !F_STDERR + :E Command's error messages + :T ©R¥Oªº¿ù»~°T®§¡@ + # *** new message + !F_STDOUT + :E Command's output + :T ©R¥Oªº¿é¥X¡@ + # *** new message + !F_EXPLAN + :E Explanations + :T »¡©ú¡@ + # *** new message + !F_NOTDONE + :E Not done + :T ¥¼§¹¦¨¡@ + # *** new message + !F_WHY + :E Why + :T ¬°¦ó¡@ + # *** new message + !F_TOPICS + :E Topics + :T ÃD¥Ø¡@ + # *** new message + !E_KERNBAD + :E %s is not a file + :T %s ¤£¬O¤@Àɮס@ + # *** new message + !M_MODE + :E Mode + :T ¼Ò¦¡¡@ + # *** new message + !M_LILOT + :E Lilo + # *** new message + !F_INITRD + :E Initial ramdisk(opt) + :T ªì©l ramdisk(¿ï¶µ)¡@ + # *** new message + !F_LINEAR + :E Boot table encoding + :T °_°Êªí½s½X¡@ + # *** new message + !E_IVLDRMDSKSIZE + :E Invalid ramdisk size + :T µL®Äªº ramdisk ¤j¤p¡@ + # *** new message + !I_PROMPT + :E Present the LILO boot: prompt + :T LILO °_°Ê´£¥Ü: prompt¡@ + # *** new message + !F_PROMPTTIMEOUT + :E Prompt timeout in seconds + :T Prompt ªº©µ¿ðªº®É¶¡ (¬í)¡@ + # *** new message + !M_VERCONFIG + :E configuration version + :T ³]©wªºª©¥»¡@ + # *** new message + !M_SELECT + :E Select + :T ¿ï¾Ü¡@ + # *** new message + !I_READONLY + :E Read only + :T ¥u¥iŪ¡@ + # *** new message + !F_DIATIMEOUT + :E Prompt timeout + :T ´£¥Üªº©µ¿ð¡@ + # *** new message + !T_LINUX + :E Linux boot configuration + :T Linux °_°Ê³]©w¡@ + # *** new message + !I_OTHEROS + :E You control how to boot another operating\n + +system on one partition of your harddrive(s) + :T §A¥i¥H±±¨î¦b§AµwºÐ¤º¡@\n + +ªº¥t¤@§@·~¨t²Îªº°_°Ê¤èªk¡@\n + # *** new message + !T_OTHEROS + :E Other operating system setup + :T ¥t¤@§@·~¨t²Îªº³]©w¡@ + # *** new message + !T_LILOCONFS + :E Lilo linux configurations + :T Lilo linux ³]©w¡@ + # *** new message + !I_LINUXOS + :E You control how to boot one Linux\nconfiguration + :T §A¥i±±¨î«ç¼Ë°_°Ê¡@\nLinux ³]©w¡@ + # *** new message + !H_LILOCONFS + :E Label\tPartition\tKernel + :T ¼Ð°O¡@\tPartition¡@\t®Ö¤ß¡@ + # *** new message + !M_LILOLINUX + :E LILO linux configurations + :T LILO linux ³]©w¡@ + # *** new message + !M_LILOOTHERS + :E LILO other OS configurations + :T LILO ¥t¤@ OS ³]©w¡@ + # *** new message + !T_BASE + :E Base options + :T °ò¥»¿ï¶µ¡@ + # *** new message + !T_EXTRALILO + :E Extra options + :T ÃB¥~¿ï¶µ¡@ + # *** new message + !E_IMAGE + :E Kernel file %s is missing + :T ¯Ê¤Ö®Ö¤ßÀÉ %s¡@ + # *** new message + !H_LILOOTHERS + :E Label\tPartition + :T ¼Ð°O¡@\tPartition¡@ + # *** new message + !T_LILOOTHERS + :E Lilo other OSs configurations + :T Lilo ¥t¤@ OS ³]©w¡@ + # *** new message + !E_DUPLILOLABEL + :E Duplicate LILO label: %s + :T ­«ÂЪº LILO ¼Ð°O: %s¡@ + # *** new message + !F_ASKRUN + :E Boot time menu enabled + :T °_°Ê®Éµæ³æ±Ò°Ê¡@ + # *** new message + !F_PASSWORD + :E Password (opt) + :T ±K½X¡@ + # *** new message + !F_RESTRICTED + :E Restricted access + :T ­­¨î¦s¨ú¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/conectiva.dic linuxconf-1.15/messages/bg5/conectiva.dic *** linuxconf-1.14r4/messages/bg5/conectiva.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/conectiva.dic Tue Apr 13 04:15:03 1999 *************** *** 0 **** --- 1,33 ---- + @version 0 + # *** new message + !T_USAGE + :E conectiva usage\n\nconectiva --option ...\n + :T conectiva »yªk¡@\n\nconnectiva --option ...\n + # *** new message + !I_REMOVING + :E Removing device configuration: %s\n + :T ²¾°£³]³Æ³]©w: %s¡@\n + # *** new message + !T_AUTHENTICATE + :E Authentication + :T Ų»{¡@ + # *** new message + !I_AUTHREQ + :E Authentication required\nfor user %s + :T ¥Î¤á %s »Ý­nŲ»{¡@ + # *** new message + !T_NEWPASS + :E Changing password + :T Âà´«±K½X¡@ + # *** new message + !I_NEWPASS + :E Changing the password for user %s + :T ¥Î¤á %s Âà´«±K½X¡@ + # *** new message + !I_DISABLED + :E The account was disabled\n + :T ±b¤á¤£¥i±Ò¥Î¡@\n + # *** new message + !I_ENABLED + :E The account was enabled\n + :T ±b¤á¤w±Ò¥Î¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/dhcpd.dic linuxconf-1.15/messages/bg5/dhcpd.dic *** linuxconf-1.14r4/messages/bg5/dhcpd.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/dhcpd.dic Tue Apr 13 04:15:03 1999 *************** *** 0 **** --- 1,256 ---- + @version 0 + # *** new message + !M_DHCP + :E DHCP/BOOTP server + :T DHCP/BOOTP ¦øªA¾¹¡@ + # *** new message + !F_ROUTERS + :E Default gateways + :T ¹w³]¹h¹D¡@ + # *** new message + !F_DNS + :E Name servers(DNS) + :T ¦WºÙ¦øªA¾¹(DNS)¡@ + # *** new message + !F_DOMAIN + :E Domain name + :T ºô°ì¦WºÙ¡@ + # *** new message + !F_SUBNETMASK + :E Netmask + :T ¾B¸n¡@ + # *** new message + !F_TIMEOFFSET + :E Time offset + :T ®É¶¡²¾¶q¡@ + # *** new message + !F_LOGSERVERS + :E Log servers + :T °O¿ý¦øªA¾¹¡@ + # *** new message + !F_LPRSERVERS + :E Print servers + :T ¦C¦L¦øªA¾¹¡@ + # *** new message + !F_TIMESERVERS + :E Time servers + :T ®É¶¡¦øªA¾¹¡@ + # *** new message + !F_COOKIESERVERS + :E Cookie servers + :T Cookie ¦øªA¾¹¡@ + # *** new message + !F_DHHOSTNAME + :E Host name + :T ¥D¾÷¦WºÙ¡@ + # *** new message + !F_WINS + :E Name servers(Netbios) + :T ¦WºÙ¦øªA¾¹(Netbios)¡@ + # *** new message + !E_DHPARSE + :E Parse error in file %s, line %d\n + +\n + +\t%s\n + +\t%*s\n + +\n + +Linuxconf won't be able to use or edit the DHCP\n + +configuration. Please correct. + :T ÀÉ®× %s ªº²Ä %d ¦æÀ˵ø¿ù»~¡@\n + +\n + +\t%s\n + +\t%*s\n + +\n + +Linuxconf ¤£¯à¨Ï¥Î©Î½s½r DHCP¡@\n + +³]©w. ½Ð§ï¥¿.¡@ + # *** new message + !E_IVLDHOSTIP + :E Invalid host IP number %s + :T µL®Ä¥D¾÷ IP ¦a§} %s¡@ + # *** new message + !E_IVLDNETIP + :E Invalid network IP number %s + :T µL®Äºô¸ô IP ¦a§} %s¡@ + # *** new message + !F_NETWORK + :E Network number + :T ºô¸ô¦a§}¡@ + # *** new message + !F_DYNBOOTP + :E Allocate to BOOTP clients + :T ¤À°t BOOTP «È¤á¡@ + # *** new message + !F_STARTIP + :E IP range start + :T IP ½d³ò (¶}©l)¡@ + # *** new message + !F_STOPIP + :E IP range stop + :T IP ½d³ò (°±¤î)¡@ + # *** new message + !F_DEFLEASETIME + :E Default lease time + :T ¹w³] lease time¡@ + # *** new message + !F_MAXLEASETIME + :E Max lease time + :T ³Ì¤j lease time¡@ + # *** new message + !T_ONESUB + :E One subnet definition + :T ¤lºô¸ô©w¸q¡@ + # *** new message + !I_ONESUB + :E + # *** new message + !F_IDENT + :E Server identification + :T ¦øªA¾¹ÃѧO¡@ + # *** new message + !T_DHCPDEF + :E DHCP defaults + :T DHCP ¹w³]¡@ + # *** new message + !I_DHCPDEF + :E You can enter the default setting which will\n + +be shared by all subnets setups unless overriden\n + :T §A¥i¿é¤J¤@¹w³]°t¸m¡@\n + +³o°t¸m¥i¥Hµ¹©Ò¦³¤lºô¦@¥Î(°£¤FÂмg¥~)¡@\n + # *** new message + !M_EDIT + :E Edit + :T ½s¿è¡@ + # *** new message + !M_DEFOPT + :E defaults + :T ¹w³]¡@ + # *** new message + !T_SUBNETS + :E Subnets + :T ¤lºô¡@ + # *** new message + !H_SUBNETS + :E Network\tNetmask\tAlloc from\t->\tTo + :T ºô¸ô¡@\t¾B¸n¡@\t¤À°t ¥Ñ¡@\t->\t¦Ü¡@ + # *** new message + !T_BOOTPHOST + :E Bootp hosts + :T Bootp ¥D¾÷¡@ + # *** new message + !B_ADDSUBNET + :E AddNet + # *** new message + !B_ADDBOOTP + :E AddBootp + # *** new message + !T_DHCPCONF + :E Dhcp configuration + :T Dhcp ³]©w¡@ + # *** new message + !I_DHCPCONF + :E You can define how IP numbers are allocated\n + +dynamicly to workstation on your net.\n + +This is a major time saver when managing an IP network\n + +with more than a few computers. + :T §A¥i¥H©w¸qºô¸ô¤W¤u§@¯¸¡@\n + +ªº°ÊºA IP ¦a§}ªº¤À°t¤èªk¡@\n + +³o¹ï¦h¾÷ªº IP ¦a§}ºÞ²z¡@\n + +¸`¬Ù«Ü¦h®É¶¡¡@ + # *** new message + !F_NETMASK + :E netmask + :T ¾B¸n¡@ + # *** new message + !E_NOMATCH + :E This subnet is not associated with any\n + +network adaptor (basic host information).\n + +This means that IP numbers in this subnet\n + +will only by allocated to some other network\n + +using a dhcp relay to this dhcpd server + :T ³o¤lºô¤£¸ò¥ô¦óºô¸ô¥d³sô¡@\n + +(°ò¥»¥D¾÷¸ê®Æ)¡@\n + +³oªí¥Ü³o¤lºôªº IP ¦a§}¡@\n + +¥u¥i¤À°tµ¹¤@¨Ç¨Ï¥Î dhcp relay ¦Ü³o dhcpd¡@ + +server ªººô¸ô¡@ + # *** new message + !M_UPDATEDNS + :E DNS with dhcp hosts + # *** new message + !M_UPDATE + :E Update + :T §ó·s¡@ + # *** new message + !H_SHOWALLOC + :E Host\tIp\tMac address\tStarts\tStops + :T ¥D¾÷¡@\tIp¡@\tMac ¦a§}¡@\t¶}©l¡@\t°±¤î¡@ + # *** new message + !T_SHOWALLOC + :E Lease allocations + :T ¯²¥Î¤À°t¡@ + # *** new message + !M_VIEWLEASES + :E DHCP allocations + :T DHCP ¤À°t¡@ + # *** new message + !M_VIEW + :E View + :T À˵ø¡@ + # *** new message + !E_USAGE + :E module dhcpd\n\n --updatedns\n + # *** new message + !E_NODNSSUPPORT + :E The DNSCONF_API is not registered, can't update the DNS\n + +(probably because the dnsconf module is not enabled) + :T ³o DNSCONF_API ÁÙ¥¼µù¥U, ¤£¯à§ó·s DNS¡@\n + +(³o¥i¯à¬O¦] dnsconf ¼Ò²ÕÁÙ¥¼±Ò°Ê)¡@ + # *** new message + !N_UPDATED + :E DNS was updated + :T DNS ¤w§ó·s¡@ + # *** new message + !N_UPTODATE + :E DNS was already up to date + :T DNS ¤w¬O³Ì·s¡@ + # *** new message + !T_BASIC + :E Basic + :T °ò¥»¡@ + # *** new message + !T_SERVERS + :E Servers + :T ¦øªA¾¹¡@ + # *** new message + !T_OTHERS + :E Others + :T ¨ä¥¦¡@ + # *** new message + !F_DEFDNSDOM + :E Update DNS domain + :T §ó·s DNS ºô°ì¡@ + # *** new message + !E_DNSDOM + :E You must specify in which DNS domain\nDHCP host must be inserted + :T §A¥²»Ý«ü¥X¨º¤@ DNS ºô°ì¡@\nDHCP ¥D¾÷¤@©w­n´¡¤J¡@ + # *** new message + !T_DNS + :E Dns + # *** new message + !F_UPDDNS + :E Update DNS + :T §ó·s DNS¡@ + # *** new message + !I_UPDDNS + :E from cron + :T ¥Ñ cron¡@ + # *** new message + !E_CANUPDDNS + :E The DNS can't be update from the dhcp server\n + +unless you provide the domain in which to\n + +register hosts. + :T ³o DNS ¤£¯à±q dhcp ¦øªA¾¹¤¤§ó·s¡@\n + +°£«D§A¯à´£¨Ñµù¥U¥D¾÷ªººô°ì¡@ + # *** new message + !F_NETBIOSNODETYPE + :E Node type(Netbios) + :T Node ºØÃþ(Netbios)¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/diajava.dic linuxconf-1.15/messages/bg5/diajava.dic *** linuxconf-1.14r4/messages/bg5/diajava.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/diajava.dic Tue Apr 13 04:15:04 1999 *************** *** 0 **** --- 1,13 ---- + @version 0 + # *** new message + !E_REMVER + :E Incompatible version of the GUI frontend\n + :T GUI «eºÝªºª©¥»¤£°t¡@ + # *** new message + !E_REMEXIT + :E remadmin (GUI frontend) exiting abnormaly\n + :T remadmin (GUI «eºÝ)¤£¥¿±`Â÷¶}¡@\n + # *** new message + !E_REMERR + :E Error message from remadmin :%s + :T remadmin ¿ù»~°T®§ :%s¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/dialog.dic linuxconf-1.15/messages/bg5/dialog.dic *** linuxconf-1.14r4/messages/bg5/dialog.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/dialog.dic Tue Apr 13 04:15:04 1999 *************** *** 0 **** --- 1,208 ---- + @version 0 + # *** new message + !B_YES + :E Yes + :T ¬O¡@ + # *** new message + !B_NO + :E No + :T §_¡@ + # *** new message + !B_OK + :E Ok + :T ½T©w¡@ + # *** new message + !B_ACCEPT + :E Accept + :T ±µ¨ü¡@ + # *** new message + !B_CANCEL + :E Cancel + :T ¨ú®ø¡@ + # *** new message + !B_QUIT + :E Quit + :T Â÷¶}¡@ + # *** new message + !B_SAVE + :E Save + :T Àx¦s¡@ + # *** new message + !B_ADD + :E Add + :T ·s¼W¡@ + # *** new message + !B_DEL + :E Del + :T §R°£¡@ + # *** new message + !B_INS + :E Ins + :T ¥[¤J¡@ + # *** new message + !B_EDIT + :E Edit + :T ½s¿è¡@ + # *** new message + !B_RESET + :E Reset + :T ­«³]¡@ + # *** new message + !B_HELP + :E Help + :T »¡©ú¡@ + # *** new message + !E_MISMATCH + :E dialog state mismatch + :T ¹ï¸Ü²°ª¬ºA¤£°t¡@ + # *** new message + !B_MORE + :E More + :T §ó¦h¡@ + # *** new message + !B_USR1 + :E Usr1 + # *** new message + !B_USR2 + :E Usr2 + # *** new message + !B_USR3 + :E Usr3 + # *** new message + !E_INLIST + :E The value must be taken from the list + :T ½Ð¥Ñ¦Cªí¤¤¿ï¨ú¼Æ­È¡@ + # *** new message + !E_NOEMPTY + :E This field may not be empty + :T ³oÄæ¤£¥iªÅ¥Õ¡@ + # *** new message + !E_NOHELPFILE + :E Help file %s not yet written + :T ¯Ê¤Ö»¡©úÀÉ %s¡@ + # *** new message + !E_NOPT + :E No decimal point allowed + :T ¤£¥i¦³¤p¼ÆÂI¡@ + # *** new message + !E_NONDIGIT + :E Only digits and the minus sign are allowed + :T ¥u¥i±µ¨ü¼Æ¦r¤Î´î¸¹¡@ + # *** new message + !E_NOTTY + :E **** No tty available ... linuxconf quitting + :T **** ¨S¦³ tty....Â÷¶} linuxconf¡@ + # *** new message + !E_IVLDHTMLREQ + :E Invalid html request + :T µL®Ä html ­n¨D¡@ + # *** new message + !L_FREQUEST + :E File request: %s + :T ÀÉ®×­n¨D: %s¡@ + # *** new message + !L_REQUEST + :E Request: %s + :T ­n¨D: %s¡@ + # *** new message + !F_PREFIX + :E Item's prefix + :T ¶µ¥Øªº«eºó¡@ + # *** new message + !T_PREFIX + :E Filter prefix + :T ¹LÂo¾¹«eºó¡@ + # *** new message + !I_PREFIX + :E The list of records is long, so you\n + +may want to filter it a bit by providing\n + +a prefix to search. An empty prefix means to show\n + +all records. + :T ¦Cªí°O¿ý¹Lªø, §A¥i¥Î¤@¡@\n + +«eºó(prefix)§@¹LÂo·j¯Á.¡@\n + +ªÅ¥Õ«eºó±N·|¦C¥X¡@\n + +©Ò¦³°O¿ý¡@ + # *** new message + !T_HELPLIST + :E Help list + :T »¡©ú¦Cªí¡@ + # *** new message + !I_HELPLIST + :E Pick one value + :T ½Ð¿ï¤@¼Æ­È¡@ + # *** new message + !X_YES + :E Yes + :T ¬O¡@ + # *** new message + !X_NO + :E No + :T §_¡@ + # *** new message + !X_ACCEPT + :E Accept + :T ±µ¨ü¡@ + # *** new message + !X_CANCEL + :E Cancel + :T ¨ú®ø¡@ + # *** new message + !X_QUIT + :E Quit + :T Â÷¶}¡@ + # *** new message + !X_SAVE + :E Save + :T Àx¦s¡@ + # *** new message + !X_ADD + :E Add + :T ·s¼W¡@ + # *** new message + !X_DEL + :E Del + :T §R°£¡@ + # *** new message + !X_INS + :E Ins + :T ¥[¤J¡@ + # *** new message + !X_EDIT + :E Edit + :T ½s¿è¡@ + # *** new message + !X_RESET + :E Reset + :T ­«³]¡@ + # *** new message + !X_MORE + :E More + :T §ó¦h¡@ + # *** new message + !X_OKEY + :E Ok + :T ½T©w¡@ + # *** new message + !E_GUIVER + :E Invalid GUI protocol version + :T ¤£¦Xªkªº GUI ¨óijª©¥»¡@ + # *** new message + !E_NOEMPTYNAME + :E The field `%s`\nmay not be empty + :T Äæ¦ì '%s'¡@\n¤£¥iªÅ¥Õ¡@ + # *** new message + !B_USR4 + :E Usr4 + # *** new message + !B_USR5 + :E Usr5 + # *** new message + !B_USR6 + :E Usr6 + # *** new message + !B_USR7 + :E Usr7 + # *** new message + !X_HELP + :E Help + :T »¡©ú¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/dialout.dic linuxconf-1.15/messages/bg5/dialout.dic *** linuxconf-1.14r4/messages/bg5/dialout.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/dialout.dic Tue Apr 13 04:15:05 1999 *************** *** 0 **** --- 1,640 ---- + @version 0 + # *** new message + !I_SETDYNADDR + :E Setting %s to 1\n + :T ±N %s ³]¦Ü 1¡@\n + # *** new message + !I_GENFILE + :E Generating config file %s\n + :T ²£¥Í³]©wÀÉ %s¡@\n + # *** new message + !X_KILLDIALD + :E Killing on demand IP for config %s\n + :T ³]©w %s ªº demand IP ¨ú®ø¡@\n + # *** new message + !E_DIALDCONUID + :E netconf --setupdiald can only be used by root (by diald)\n + :T netconf --setupdiald ¥u¥iµ¹ root ¥Î (¥Ñ diald)¡@\n + # *** new message + !M_SETDIALDRT + :E Setting routes for PPP on demand dialout %s\n + :T PPP on demand ¼·¸¹ %s ªº¸ô¥Ñ°t¸m¡@\n + # *** new message + !E_TWODEFROUTE + :E Can't have two dialup configuration with default route\n + +at the same time. Deactivating dialup config %s\n + :T ¤£¯à¦P®É¦³¨â­Ó¼·¸¹³]©w¥Î default route¡@\n + +¼·¸¹³]©w %s ¤£¥i±Ò°Ê¡@\n + # *** new message + !E_TWODEFAULT + :E Can't activate on demand dialup for %s: duplicate default route\n + :T ¤£¥i±Ò°Ê on demand ¼·¸¹ %s: ­«ÂÐ default route¡@\n + # *** new message + !X_DIALDCLEAN + :E Cleaning on demand IP (diald) work files\n + :T ²M°£ on demand IP (diald) ¤u§@ÀÉ¡@\n + # *** new message + !M_dialout + :E PPP or SLIP dialout + :T PPP ©Î SLIP ¼·¸¹¹O®É¡@ + # *** new message + !T_USAGE + :E Module dialout\n + +\n + + --dialctl\n + + --disconnect config\n + + --connect config [ --fore ]\n + # *** new message + !F_BAUD + :E Baud rate + # *** new message + !F_SERIALDEF + :E Serial device + :T ¦ê³s³]³Æ¡@ + # *** new message + !F_FIRSTCOM + :E first standard serial port COM1 + :T ²Ä¤@­Ó¼Ð·Ç¦ê³s°ð COM1¡@ + # *** new message + !F_SECONDCOM + :E Second standard serial port COM2 + :T ²Ä¤G­Ó¼Ð·Ç¦ê³s°ð COM2¡@ + # *** new message + !F_COM1M + :E COM1 when using mgetty + :T COM1 ¨Ï¥Î mgetty¡@ + # *** new message + !F_COM2M + :E COM2 when using mgetty + :T COM2 ¨Ï¥Î mgetty + # *** new message + !E_NOSPACE + :E No spaces allowed in the configuration name\n + :T ³]©w¦WºÙ¤£¯à¦³¶¡¹j¡@\n + # *** new message + !E_DUPCONF + :E The configuration %s\nalready exist\nUse another name\n\n + :T ³]©w %s¡@\n¤w¸g¦s¦b¡@\n½Ð¥Î¨ä¥¦¦WºÙ¡@\n\n + # *** new message + !E_NEEDNAME + :E You must supply\na configuration name\n\n + :T §A¤@©w­nµ¹¤@­Ó¡@\n³]©w¦WºÙ¡@\n\n + # *** new message + !E_NEEDDEV + :E You must supply a device (/dev/xxxx)\n\n + :T §A¤@©w­nµ¹¤@­Ó³]³Æ (/dev/xxxx)¡@\n\n + # *** new message + !E_LCPECHO + :E You must supply a value pair\n delay,retry for the LCP echo protocol + :T §A¤@©w­nµ¹¤@¹ï­È¡@\n delay,retry µ¹ LCP ¦^À³¨ó©w¡@ + # *** new message + !E_PPPNEEDIP + :E You must enter an IP number for each side\n of the connexion\n + :T ³s½uªº¨C¤@Ãä§¡»Ý¡@\n¿é¤J IP ¦a§}¡@\n + # *** new message + !E_SSHSECT + :E You must fill all fields (except encryption)\nof the PPP over SSH section\n + :T ¨C¤@Äæ§¡»Ý¶ñ¤J (°£ ¥[±K ¥~)¡@\n(PPP over SSH °Ï)¡@\n + # *** new message + !F_IPDST + :E Network or host + :T ºô¸ô©Î¥D¾÷¡@ + # *** new message + !F_IPMSK + :E Netmask(opt) + :T ¾B¸n(¿ï¶µ)¡@ + # *** new message + !N_BASE + :E Base info + :T °ò¥»¸ê®Æ¡@ + # *** new message + !F_PPPNAME + :E Configuration name + :T ³]©w¦WºÙ¡@ + # *** new message + !F_CONNECTTYPE + :E Connection type + :T ³]©wºØÃþ¡@ + # *** new message + !F_PPPSERIAL + :E PPP using serial port/modem + :T ¨Ï¥Î¦ê³s°ð/¼Æ¾Ú¾÷ ªº PPP¡@ + # *** new message + !F_PPPSSH + :E PPP over a secure shell (ssh) + :T ¦b secure shell (ssh) ¤Wªº PPP¡@ + # *** new message + !F_SLIP + :E SLIP + # *** new message + !F_PLIP1 + :E PLIP1 (IP over printer port 1) + :T PLIP1 (¦b¦C¦L°ð 1 ¤Wªº IP)¡@ + # *** new message + !F_PLIP2 + :E PLIP2 (IP over printer port 2) + :T PLIP2 (¦b¦C¦L°ð 2 ¤Wªº IP)¡@ + # *** new message + !F_PPP_LOGIN + :E Login + :T µn¤J¡@ + # *** new message + !F_PPP_PAP + :E PAP¡@ + # *** new message + !F_PPP_CHAP + :E CHAP¡@ + # *** new message + !F_PPP_NONE + :E None + :T ¨S¦³¡@ + # *** new message + !F_PPPAUTH + :E PPP authentication + :T PPP ų©w¡@ + # *** new message + !F_PPP_MANUAL + :E Manual + :T ¤â°Ê¡@ + # *** new message + !F_PPP_DEMAND + :E On demand + :T «ö­n¨D¡@ + # *** new message + !F_PPP_24on24 + :E On boot + :T ¦b°_°Ê¡@ + # *** new message + !F_PPPTYPE + :E Operation mode + :T §@·~¼Ò¦¡¡@ + # *** new message + !F_OURIP + :E Our IP number(opt) + :T §Ú­Ìªº IP ¦a§}(¿ï¶µ)¡@ + # *** new message + !F_REMOTEIP + :E Remote IP number(opt) + :T »·µ{ªº IP ¦a§}(¿ï¶µ)¡@ + # *** new message + !F_LOGIN + :E login + :T µn¤J¡@ + # *** new message + !F_PASSWORD + :E Password + :T ±K½X¡@ + # *** new message + !T_LOGINCHAT + :E Chat¡@ + # *** new message + !F_LOGINKEY + :E Expected login key + :T ´Á±æªºµn¤JÆ_¡@ + # *** new message + !F_PASSWDKEY + :E Expected password key + :T ´Á±æªº±K½XÆ_¡@ + # *** new message + !F_LOGINOK + :E Expected welcome (opt) + :T ´Á±æªº welcome(¿ï¶µ)¡@ + # *** new message + !F_TRIGGER + :E Trigger command (opt) + :T Trigger ©R¥O(¿ï¶µ)¡@ + # *** new message + !F_LOGINFAIL + :E Login fail key (opt) + :T µn¤Jªº¥¢±ÑÆ_(¿ï¶µ)¡@ + # *** new message + !F_LOGINCHAT + :E Custom login chat (opt) + :T ¦Û¿ï login chat (¿ï¶µ)¡@ + # *** new message + !N_MODEM + :E Modem + # *** new message + !T_MODEM + :E Modem specifications + :T ¼Æ¾Ú¾÷»¡©ú¡@ + # *** new message + !F_MODEMCHAT + :E Modem initialisation + :T ¼Æ¾Ú¾÷ªì¦¸¤Æ¡@ + # *** new message + !F_PHONE + :E Phone + # *** new message + !F_MODEMCTRL + :E Modem controls + :T ¼Æ¾Ú¾÷±±¨î¡@ + # *** new message + !F_LOCKFILE + :E Lock file + :T Lock ÀÉ¡@ + # *** new message + !T_FEATURES + :E Features + :T ¥\\¯à¡@ + # *** new message + !F_IDLETIME + :E Idle time + :T ¶¢¸m®É¶¡¡@ + # *** new message + !F_PPPMRU + :E PPP MRU + # *** new message + !F_PPPMTU + :E PPP MTU(opt) + :T PPP MTU(¿ï¶µ)¡@ + # *** new message + !F_RUNPPPD + :E Run pppd in debug mode + :T ¦b debug ¼Ò¦¡¤U¹B¦æ pppd¡@ + # *** new message + !F_RUNCHAT + :E Run chat in debug mode + :T ¦b debug ¼Ò¦¡¤U¹B¦æ chat¡@ + # *** new message + !F_ASYNCMAP + :E Async map + # *** new message + !F_LCPECHO + :E LCP echo + :T LCP ¦^¶Ç¡@ + # *** new message + !F_NOLCPECHO + :E Don't use LCP echo protocol + :T ¤Å¥Î LCP ¦^¶Ç¨ó©w¡@ + # *** new message + !F_ECHO15_3 + :E Send lcp echo every 15, hangup after 3 failures + :T ¨C 15 ¦¸°e lcp ¦^¶Ç, 3¦¸¥¢±Ñ«áÂ÷½u¡@ + # *** new message + !F_OTHERPPP + :E Other PPP options + :T ¨ä¥¦ PPP ¿ï¶µ¡@ + # *** new message + !F_CONCMD + :E Post-connect cmd(opt) + :T ³s½u«áªº©R¥O(¿ï¶µ)¡@ + # *** new message + !F_PREDISCMD + :E Pre-disconnect cmd(opt) + :T Â÷½u«eªº©R¥O(¿ï¶µ)¡@ + # *** new message + !F_DISCMD + :E Post-disconnect cmd(opt) + :T Â÷½u«áªº©R¥O(¿ï¶µ)¡@ + # *** new message + !N_PPPIPXCONF + :E Ipx + # *** new message + !T_PPPIPXCONF + :E IPX options + :T IPX ¿ï¶µ¡@ + # *** new message + !F_PPPIPXENABLE + :E Enable IPX over PPP + :T ±Ò°Ê IPX over PPP¡@ + # *** new message + !F_PPPIPXNETNUM + :E Network number + :T ºô¸ô¦a§}¡@ + # *** new message + !F_PPPIPXLOCALNUM + :E Local node number + :T ¥»¾÷¸`ÂI¦a§}¡@ + # *** new message + !F_PPPIPXREMOTENUM + :E Remote node number + :T »·µ{¸`ÂI¦a§}¡@ + # *** new message + !F_PPPIPXRIPSAP + :E Enable RIP and SAP routing + :T ±Ò°Ê RIP ¤Î SAP ¸ô¥Ñ¡@ + # *** new message + !F_PPPIPXNLSP + :E Enable NLSP routing + :T ±Ò°Ê NLSP ¸ô¥Ñ¡@ + # *** new message + !F_PPPIPXOPTIONS + :E Other ipx options + :T ¨ä¥¦ ipx ¿ï¶µ¡@ + # *** new message + !N_PPPSSH + :E SSH + # *** new message + !T_PPPSSH + :E PPP over SSH + # *** new message + !F_SSHHOST + :E Ssh server + :T Ssh ¦øªA¾¹¡@ + # *** new message + !F_SSHUSER + :E Account + :T ±b¸¹¡@ + # *** new message + !F_ACCTPPP + :E PPP account + :T PPP ±b¸¹¡@ + # *** new message + !F_ACCTSHELL + :E Shell account + :T Shell ±b¸¹¡@ + # *** new message + !F_ACCTYPE + :E Account type + :T ±b¸¹ºØÃþ¡@ + # *** new message + !F_ENCRYPT + :E Encryption type + :T ¥[±KºØÃþ¡@ + # *** new message + !O_CRYPTDEF + :E Use the default available + :T ¨Ï¥Î¥i¨Ñªº¹w³]¡@ + # *** new message + !O_CRYPTNONE + :E No encryption + :T ¨S¦³¥[±K¡@ + # *** new message + !O_CRYPTIDEA + :E + # *** new message + !O_CRYPTDES + :E + # *** new message + !O_CRYPT3DES + :E + # *** new message + !O_CRYPTFOUR + :E + # *** new message + !O_CRYPTTSS + :E + # *** new message + !F_COMPRESS + :E Compression + :T ¥[À£¡@ + # *** new message + !F_ENABLE + :E Enabled + :T ±Ò°Ê¡@ + # *** new message + !F_OTHERPPPD + :E Path of the remote pppd + :T »·µ{ pppd ªº¸ô®|¡@ + # *** new message + !T_IPROUTING + :E Routing + :T ¸ô¥Ñ¡@ + # *** new message + !F_DEFROUTE + :E Default route + :T ¹w³]¸ô¥Ñ¡@ + # *** new message + !F_PROXYARP + :E Proxy Arp (fake remote on local net) + :T Proxy Arp (¥»ºô¤Wªº°²»·µ{)¡@ + # *** new message + !B_CONNECT + :E Connect + :T ³s½u¡@ + # *** new message + !X_CONNECT + :E Connect + :T ³s½u¡@ + # *** new message + !T_ONEPPPCONF + :E %s PPP/SLIP configuration + :T %s PPP/SLIP ³]©w¡@ + # *** new message + !T_NEWPPP + :E new + :T ·s¡@ + # *** new message + !I_ONEPPPCONF + :E One PPP, SLIP or PLIP configuration + :T ¤@­Ó PPP, SLIP ©Î PLIP ³]©w¡@ + # *** new message + !Q_DELETED + :E Are you sure + :T ¬O§_ªÖ©w¡@ + # *** new message + !I_DELETED + :E This configuration will be\ndeleted permanently + :T ³o³]©w±N·|¡@\n¥Ã»·§R±¼¡@ + # *** new message + !T_PPPPRIV + :E Dialout (PPP) + :T ¼·¸¹ (PPP)¡@ + # *** new message + !T_PPPHEAD + :E Config\tType\tOperation mode\tStatus + :T ³]©w¡@\tºØÃþ¡@\t¹B§@¼Ò¦¡¡@\tª¬ºA¡@ + # *** new message + !F_CONNECTED + :E Connected + :T ¤w³s½u¡@ + # *** new message + !P_CONFPPP + :E configure PPP and SLIP + :T ³]©w PPP ¤Î SLIP¡@ + # *** new message + !I_ADDCONF + :E Select [Add] to add a new configuration + :T ¿ï [·s¼W] ·s¼W¤@·s³]©w¡@ + # *** new message + !T_PPPCONF + :E PPP/SLIP configuration + :T PPP/SLIP ³]©w¡@ + # *** new message + !I_PPPCONF + :E You are allowed to edit/add\n + +PPP and SLIP configuration\n + +which will allow your computer to connect\n + +to PPP and SLIP server + :T §A¥i¥H½s½r/·s¼W¡@\n + +PPP ¤Î SLIP ³]©w¡@\n + +³o¥i¥O§Aªº¹q¸£³s¦Ü¡@\n + +PPP ©M SLIP ¦øªA¾¹¡@ + # *** new message + !P_ACTLINK + :E activate a network link + :T ±Ò°Ê¤@ºô¸ô³sô¡@ + # *** new message + !E_NOCONF + :E No configuration %s + :T ¨S¦³³]©w %s¡@ + # *** new message + !E_IVLOPTION + :E Invalid option\nnetconf --connect site [ --fore ] + :T µL®Ä¿ï¶µ¡@\nneetconf --connect site [ --fore ] + # *** new message + !E_POSTCONUID + :E netconf --postconnect can only be used by root\n + :T netconf --postconnect ¥u¥i¥Ñ root ¨Ï¥Î¡@\n + # *** new message + !E_POSTCONUSAGE + :E Invalid usage\n + +netconf --postconnect linuxconf_dialout ppp_config ppp_device\n + +netconf --postconnect linuxconf_dialin user_account ppp_device\n + # *** new message + !E_PRECONUID + :E netconf --predisconnect can only be used by root\n + :T netconf --predisconnect ¥u¥i¥Ñ root ¨Ï¥Î¡@\n + # *** new message + !E_PREDISCONUSAGE + :E Invalid usage\n + +netconf --predisconnect linuxconf_dialout ppp_config ppp_device\n + +netconf --predisconnect linuxconf_dialin user_account ppp_device\n + # *** new message + !T_PPPCONCTRL + :E PPP/SLIP connection control + :T PPP/SLIP ³s½u±±¨î¡@ + # *** new message + !I_PPPCONCTRL + :E You are allowed to activate/deactivate\nPPP and SLIP link\n + :T §A¥i¥H±Ò°Ê/¤£±Ò°Ê¡@\nPPP ¤Î SLIP ³s½u¡@ + # *** new message + !P_CTLDIALOUT + :E control dialout + :T ±±¨î¼·¸¹¡@ + # *** new message + !Q_DOCONN + :E Activate PPP link + :T ±Ò°Ê PPP ³s½u¡@ + # *** new message + !I_DOCONN + :E Do you want to activate the network link ? + :T §A¬O§_­n±Ò°Êºô¸ô³s½u?¡@ + # *** new message + !Q_DODISCONN + :E Terminate PPP link + :T °±¤î PPP ³s½u¡@ + # *** new message + !I_DODISCONN + :E Do you want to terminate the network link ? + :T §A¬O§_­n°±¤îºôµ¸³s½u¡@ + # *** new message + !T_PPPCLEANUP + :E Cleaning up PPP pid file\n + :T ²M°£ PPP pid ÀÉ¡@\n + # *** new message + !M_PPPDIALOUT + :E PPP/Slip dialout + :T PPP/Slip ¼·¸¹¡@ + # *** new message + !E_NOIPUPTMP + :E Can't create a temporary file %s.%sxx to update %s\nNo update + :T ¤£¯à²£¥Í¼È¦sÀÉ %s. %sxx §ó·s %s¡@\n¨S¦³§ó·s¡@ + # *** new message + !T_UPDSCRIPT + :E Update script + :T §ó·s¸}¥»¡@ + # *** new message + !I_UPDSCRIPT + :E The script %s is not compatible with linuxconf\n + +A special section will be added to it preserving\n + +what is already there.\n + +You may refuse to install this modification and\n + +PPP connectivity will still work, but some\n + +functionnalities won't (extra routing for one)\n + +\n + +May I install the modifications ? + :T ³o¤@¸}¥» %s ¤£¾A¥Î©ó linuxconf¡@\n + +¤@¯S§O°Ï¬q±N·|¥[¤J¥H«O¦s¤w¡@\n + +°µ¤u§@¡@\n + +§A¥i¥H©Úµ´¦w¸Ë³o¨Ç­×§ï¡@\n + +PPP ³s½u¤´¥i¹B¦æ¦ý¬Y¨Ç©Ê¯à¡@\n + +¤£¥i(¦pÃB¥~¸ô¥Ñ)¡@\n + +\n + +§Ú¥i§_¦w¸Ë³o­×§ï?¡@ + # *** new message + !E_FORMATIPUP + :E File %s is not a script\n + + (no #!/bin/sh or #!/bin/bash at the beginning)\n + +Linuxconf won't try to update it\n + +Please fix manually. Some functionnalities won't be\n + +available\n + + -disconnecting\n + + -extra routing\n + + -connection detection\n + :T ÀÉ®× %s ¤£¬O¤@¸}¥»¡@\n + + (¨S¦³ #!/bin/sh ©Î #!/bin/bash ¦b³Ì­±)¡@\n + +Linuxconf ¤£·|¹Á¸Õ§ó·s¡@\n + +½Ð¤â°Ê§ó§ï. ¬Y¨Ç¥\\¯à±N¤£¯à´£¨Ñ¡@\n + + -disconnecting\n + + -extra routing\n + + -connection detection\n + # *** new message + !E_IPPARAM + :E To enable special routing for this PPP\n + +Linuxconf needs pppd 2.2.x which run only on linux 2.x\n + +and higher\n + +Some feature of this ppp connection won't be activated + :T ¦p­n±Ò°Ê³o PPP ªº¯S§O¸ô¥Ñ¡@\n + +Linuxconf »Ý­n pppd 2.2.x (¥u¥i¦b linux 2.x©Î¡@\n + +¥H¤W¦æ)¡@\n + +³o ppp ³s½uªº¬Y¨Ç¥\\¯à±N¤£¯à±Ò°Ê¡@ + # *** new message + !E_NODAEMON + :E %s is not available on this system\n + +or linuxconf is not allowed to use it. Sorry!\n + :T %s ¦b³o¨t²Î¤W¤£¦s¦b¡@\n + +©Î linuxconf ¤£¥i¨Ï¥Î¥¦. ¹ï¤£°_¡@\n + # *** new message + !E_PPPNOTACTIVE + :E PPP %s not active + :T PPP %s ¤£°Ê¡@ + # *** new message + !E_ONLYPPP + :E Only normal PPP is supported yet! + :T ¥u¦³¥¿±` PPP ¤~¥i¤ä´©!¡@ + # *** new message + !P_RUNCMD + :E Running pre-disconnect commands + :T °õ¦æ pre-disconnect ©R¥O¡@ + # *** new message + !E_IVLRT + :E Invalid routing destination %s\n + :T µL®Äªº¸ô¥Ñ¥Øªº¦a %s¡@\n + # *** new message + !M_SETRT + :E Setting routes for PPP dialout %s\n + :T °t¸m PPP ¼·¸¹ %sªº¸ô¥Ñ¡@\n + # *** new message + !I_ADDBYLNX + :E Added by linuxconf + :T ¥Ñ linuxconf¥[¤J¡@ + # *** new message + !I_UPDPAP + :E Updating file %s for PPP configuration %s\n + :T §ó·sÀÉ®× %s (PPP ³]©w %s)¡@\n + # *** new message + !E_SETETH0DEF + :E netconf --setdevdef can only be used by root\n + :T netconf --setdevdef ¥u¥i¥Ñ root ¨Ï¥Î¡@\n + # *** new message + !M_PPPCTRL + :E Activate/terminate PPP links + :T ±Ò°Ê/°±¤î PPP ³s½u¡@ + # *** new message + !F_ALTCHAT + :E Alternat chat script + :T ¥t¤@¥æ½Í¸}¥»¡@ + # *** new message + !F_NO + :E No + :T §_¡@ + # *** new message + !F_YES + :E Yes + :T ¬O¡@ + # *** new message + !F_USEPATCH + :E Using patched SSH? + :T ¨Ï¥Î­×¸É SSH?¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/dnsconf.dic linuxconf-1.15/messages/bg5/dnsconf.dic *** linuxconf-1.14r4/messages/bg5/dnsconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/dnsconf.dic Tue Apr 13 04:15:06 1999 *************** *** 0 **** --- 1,725 ---- + @version 0 + # *** new message + !F_IPADR + :E IP address + :T IP ¦a§}¡@ + # *** new message + !T_FORWARDERS + :E Forwarders + :T Âà°e¾¹¡@ + # *** new message + !I_FORWARDERS + :E Your DNS may delegate to other DNS\n + +the resolution of external domain.\n + +Just enter the IP number of each DNS\n + +in priority order. + :T §Aªº DNS ¥i¥H¥Nªí¨ä¥¦ DNS¡@\n + +§@¬°¸ÑªR¥~³¡ªººô°ì.¡@\n + +§A¥u»Ý¿é¤J¨C¤@ DNS ªº IP ¦a§}ªº¡@\n + +¥ý«á¦¸§Ç¡@ + # *** new message + !M_DOMAINS + :E domains + :T ºô°ì¡@ + # *** new message + !M_IPREV + :E IP reverse mappings + :T IP ­Ë¦V¬M®g¡@ + # *** new message + !M_SECOND + :E secondaries + :T ¦¸¯Å¡@ + # *** new message + !M_FORWARD + :E forwarders + :T Âà°e¾¹¡@ + # *** new message + !M_HOSTINFO + :E (quick edit) + :T (§Ö³t½s¿è)¡@ + # *** new message + !M_CONFIG + :E Configure + :T ³]©w¡@ + # *** new message + !ADDEDIT + :E Add/Edit + :T ·s¼W/½s¿è¡@ + # *** new message + !T_DNSCONF + :E DNS configurator + :T DNS ³]©w¾¹¡@ + # *** new message + !I_DNSCONF + :E This package allows you to configure\na Domain Name Server (DNS)\n + :T ³o®M¥ó¥iÅý§A³]©w¡@\n¤@ºô°ì¦WºÙ¦øªA¾¹ (DNS)¡@\n + # *** new message + !Q_NODNS + :E No DNS configured + :T ¨S¦³ DNS ³]©w¡@ + # *** new message + !I_NODNS + :E Do you want to create one ? + :T §A¬O§_­n«Ø¥ß¤@­Ó?¡@ + # *** new message + !N_DNSUSAGE + :E Module dnsconf\n + +\n + + --deldomain domain\n + + --newdomain domain [ template_domain ]\n + + --set host ip_number [ip_number ...]\n + + --set host --fromrange range\n + + --setcname host real-host\n + + --setfromip host ip_number\n + + --setmx host/domain mailserver ...\n + + --setns host/domain dns_server [ secondary_dns ... ]\n + + --unset host\n + +\n + + without argument start the interactive mode\n + # *** new message + !E_NODNS + :E No DNS currently configured + :T ¨S¦³¤w³]©wªº DNS¡@ + # *** new message + !E_NODOMAINS + :E Not applicable to any domain in the DNS\n + :T ¤£¾A¥Î©ó³o DNS ªº¥ô¦óºô°ì¡@ + # *** new message + !F_HOST_DOM + :E host or sub-domain + :T ¥D¾÷©Î¤lºô°ì¡@ + # *** new message + !F_NICKNAME + :E nick name for (CNAME) + :T ¬O³oªº¥t¤@§O¦W(CNAME):¡@ + # *** new message + !F_IPADRS + :E IP addrs. + :T IP ¦a§}¡@ + # *** new message + !F_DNSADV + :E Name servers (NS) + # *** new message + !F_EMAILADV + :E Mail servers (MX) + # *** new message + !T_HOSTINFO + :E Host information + :T ¥D¾÷¸ê®Æ¡@ + # *** new message + !I_HOSTINFO + :E Enter a host name + domain\n + +and its IP numbers (at least one)\n + +and all DNS's table will be updated\n + :T ¿é¤J¤@¥D¾÷¦W + ºô°ì¡@\n + +¤Î IP ¦a§} (³Ì¤Ö¤@­Ó)¡@\n + +©Ò¦³ DNS ªº¦Cªí±N·|§ó·s¡@\n + # *** new message + !Q_CONFIRM + :E Please confirm + :T ½Ð½T©w¡@ + # *** new message + !I_CONFIRM + :E Are you sure you want to\ndelete this entry + :T §A¬O§_½T©w¡@\n§R°£³o¶µ¥Ø¡@ + # *** new message + !Q_HOSTNAME + :E Host or domain specification + :T ¥D¾÷©Îºô°ì»¡©ú¡@ + # *** new message + !I_HOSTNAME + :E Enter the name of a host or the name of a\nsub-domain. + :T ¿é¤J¥D¾÷©Î¤lºôªº¡@\n¦WºÙ¡@ + # *** new message + !F_NETNUM + :E Network number + :T ºô¸ô¦a§}¡@ + # *** new message + !F_DOMAIN + :E Domain + :T ºô°ì¡@ + # *** new message + !F_MAINSERV + :E Main server + :T ¥D¦øªA¾¹¡@ + # *** new message + !F_ADMINMAIL + :E Administrator email + :T ºÞ²z­û¹q¶l¡@ + # *** new message + !F_SECREQ + :E Secondaries requirements + :T ¦¸¯Å­n¨D¡@ + # *** new message + !F_REFRESH + :E Refresh + :T ¨ê·s¡@ + # *** new message + !F_RETRY + :E Retry + :T ­«¸Õ¡@ + # *** new message + !F_EXPIRE + :E Expire + :T ¹L´Á¡@ + # *** new message + !F_EVERYHOSTS + :E Every hosts requirements + :T ¨C¤@¥D¾÷­n¨D¡@ + # *** new message + !F_TTL + :E Time to live + :T ¥Í¦s®É¶¡¡@ + # *** new message + !T_PRIMSPEC + :E Primary specification + :T ¥D­n³W®æ¡@ + # *** new message + !I_PRIMSPEC + :E You must enter a domain name\n + :T §A¥²»Ý¿é¤J¤@ºô°ì¦WºÙ¡@\n + # *** new message + !E_NODOMAIN + :E Fill at least the domain\nand the first IP address + :T ³Ì¤Ö¿é¤Jºô°ì¡@\n¤Î²Ä¤@­Ó IP ¦a§}¡@ + # *** new message + !T_PRIMARYS + :E Primaries + :T ¥D­n¡@ + # *** new message + !I_PRIMARYS + :E You are allowed to edit/add/remove primaries\n + :T §A¥i¥H½s¿è/·s¼W/²¾¥h ¥D­n¡@\n + # *** new message + !I_ADDPRIM + :E Select [Add] to define a new primary + :T ¿ï [·s¼W] ©w¸q¤@·sªº¥D­n¡@ + # *** new message + !F_IPSERV + :E IP address of the server + :T ¦øªA¾¹ªº IP ¦a§}¡@ + # *** new message + !T_SECSPEC + :E Secondary specification + :T ¦¸¯Å³W®æ¡@ + # *** new message + !I_SECSPEC + :E You must enter a domain and at least IP address\n + +of one DNS server of that domain\n + :T §A¥²»Ý¦b³oºô°ìªº DNS ¦øªA¾¹¡@\n + +µ¹³Ì¤Ö¿é¤J¤@ºô°ì¤Î IP ¦a§}¡@\n + # *** new message + !E_FILLDOM + :E Fill at least the domain\nand the first IP address + :T ³Ì¤Ö¿é¤Jºô°ì¡@\n¤Î²Ä¤@­Ó IP ¦a§}¡@ + # *** new message + !T_SECONDARYS + :E Secondaries + :T ¦¸¯Å¡@ + # *** new message + !I_SECONDARYS + :E You are allowed to edit/add/remove secondaries\n + :T §A¥²»Ý½s¿è/·s¼W/²¾°£ ¦¸¯Å¡@\n + # *** new message + !I_ADDSEC + :E Select [Add] to add one secondary spec + :T ¿ï [·s¼W] ·s¼W¤@¦¸¯Å³W®æ¡@ + # *** new message + !M_IPRANGE + :E IP allocation space + :T IP ¤À°tªÅ¦ì¡@ + # *** new message + !T_IPRANGE + :E IP range definitions + :T IP ½d³ò©w¸q¡@ + # *** new message + !I_IPRANGE + :E You can define here the range of IP numbers available\n + +to this DNS. It won't limit your ability of assigning\n + +the IP number you want, but will allow you to find\n + +an available one easily later. + :T §A¥i¥H¦b³o DNS ©w¸q¥i¥Îªº IP ¦a§}½d³ò¸q¡@\n + +³o¤£·|­­¨î§A»Ýªº IP ¦a§}ªº¯à¤O¡@\n + +¬Û¤Ï¦a¥¦·|Åý§A§ó®e©ö§ä¨ì¤@­Ó¥i¥Îªº¦a§}.¡@ + # *** new message + !F_IPRANGE + :E One IP range + :T ¤@­Ó IP ½d³ò¡@ + # *** new message + !F_RANGECOMMENT + :E Id/description + :T Id/»¡©ú¡@ + # *** new message + !F_RANGEFULL + :E None available + :T ¨S¦³¥i¥Îªº¡@ + # *** new message + !E_IVLDIPMAP + :E Invalid IP range definition %s\nExpected X.Y.Z.W1-W2\nor X.Y.Z1.W1-Z2.W2 + :T µL®Ä IP ½d³ò©w¸q %s¡@\n´Á«Ý X.Y.Z.W1-W2¡@\n©Î X.Y.Z1.W1-W2¡@ + # *** new message + !Q_DELPRIMARY + :E Confirm deletion of a domain + :T ½T©w§R°£¤@ºô°ì¡@ + # *** new message + !Q_DELSECONDARY + :E Confirm deletion of a secondary spec + :T ½T©w§R°£¤@¦¸¯Å³W®æ¡@ + # *** new message + !M_EDITBYDOM + :E host information by domain + :T ¥Ñºôãk¨Óªº¥D¾÷¸ê®Æ¡@ + # *** new message + !T_SELHOST + :E Hosts to edit + :T ½s¿èªº¥D¾÷¡@ + # *** new message + !T_EDITBYDOM + :E Edit hosts by domain + :T ¥Ñºô°ìªº½s¿è¥D¾÷¡@ + # *** new message + !E_MUSTINSERT + :E Insert a name before\nthe domain name + :T ¦bºô°ì¦WºÙ«e¡@\n´¡¤J¤@¦W¡@ + # *** new message + !I_ANEWHOST + :E Select [Add] tp add a new host/sub-domain + :T ¿ï [·s¼W] ·s¼W¤@·s¥D¾÷/¤lºô¡@ + # *** new message + !E_NODOMAINDEF + :E No domain defined yet + :T ¥¼¦³¤w©w¸qªººô°ì¡@ + # *** new message + !T_MISSCACHE + :E Missing root file + :T ¯Ê¤Ö root Àɮס@ + # *** new message + !E_MISSCACHE + :E Missing cache file %s\nThis DNS won't operate normally + :T ¯Ê¤Ö cache ÀÉ®× %s¡@\n³o DNS ¤£·|¥¿±`¦a¹B¦æ¡@ + # *** new message + !I_MISSCACHE + :E The file %s is not installed on your system\n + +This will prevent normal operation of your DNS\n + +I can install a copy of it for now.\n + +\n + +Get an up to date version at\n + +ftp://ftp.rs.internic.net/domain/named.root\n + +\n + +Do I install a copy of root.cache now ? + :T ÀÉ®× %s ¨S¦³¦b³o¨t²Î¦w¸Ë¡@\n + +³o±N·|§«Ãª§Aªº DNS ¥¿±`¹B¦æ¡@\n + +§Ú²{¦b¥i¥H¦w¸Ë³oÀÉ.¡@\n + +\n + +§A¥i¥H¦b³oùØÀò¨ú³Ì·sª©¥»:¡@\n + +ftp://ftp.rs.internic.net/domain/named.root\n + +\n + +§Ú¥i§_¦w¸Ë root.cache?¡@ + # *** new message + !E_CANTCOPY + :E Can't copy\n %s\n to\n %s\ncorrectly + :T ¤£¯à¥¿±`¦a«þ¨©¡@\n¥Ñ %s\n ¦Ü¡@\n %s + # *** new message + !N_DNSCREATED + :E A basic DNS (caching DNS) has been created.\n + +You can add domain to it as needed. + :T ¤@°ò¥» DNS (caching DNS) ¤w¸g«Ø¥ß.¡@\n + +§A¥i¨Ì»Ý¨D·s¼Wºô°ì¡@ + # *** new message + !Q_RENAME + :E You are renaming the host or domain\n + + %s\n + +to\n + + %s\n + +\n + +Do you want to delete the informations\n + +associated with the original name ? + :T §A¥i¥H§ó§ï¥D¾÷©Îºô°ì¦WºÙ¥Ñ¡@\n + + %s\n + +¦Ü¡@\n + + %s\n + +\n + +§A¬O§_»Ý­n§R°£¸ò­ì¦W¦³³sô¡@\n + +ªº¸ê®Æ?¡@ + # *** new message + !T_RENAME + :E Renaming + :T §ó§ï¦WºÙ¡@ + # *** new message + !F_HOST + :E host name + :T ¥D¾÷¦WºÙ¡@ + # *** new message + !T_IPREVERSE + :E Host address + :T ¥D¾÷¦a§}¡@ + # *** new message + !I_IPREVERSE + :E You can enter multiple IP numbers\n + +for one host. These IP numbers will be used to lookup\n + +a host name from its IP number. Another DNS should\n + +contain the official definition of this host. + :T §A¥i¥H¦b¤@¥D¾÷¿é¤J¡@\n + +¦h­Ó IP ¦a§}. ³o¨Ç IP ¦a§}¥i¥H¥Î¨Ó¡@\n + +´M¬d¥D¾÷¦W. ¥t¤@ DNS À³¦³³o¥D¾÷ªº¡@\n + +©x¤è©w¸q¡@ + # *** new message + !E_NOMATCH + :E The IP numbers you have entered was not part\n + +of any reverse mapping pseudo-domain + :T ¿é¤Jªº IP ¦a§}¤£¬O¥ô¦ó¡@\n + +¤Ï¦V¬M®gµêÀÀºôªº¤@³¡¥÷¡@ + # *** new message + !E_LEXDNS + :E Invalid character in name\n + +\t%s\n + +only digits, letter, - and . are allowed\n + +May also start with a * + :T µL®Äªº¦WºÙ¦r²Å¡@\n + +\t%s\n + +¥u¦³¼Æ¦r, ­^¤å¤l¥À, - ¤Î . ¥i¥H¨Ï¥Î¡@\n + +¥ç¥i¥Ñ * ¬°¶}©l¡@ + # *** new message + !N_CONFIG + :E Config + :T ³]©w¡@ + # *** new message + !E_NOIPWCNAME + :E No IP number allowed with a nickname + :T §O¦W¤£¥i¦³ IP ¦a§}¡@ + # *** new message + !H_SECONDARIES + :E domain\tprimary\tother + :T ºô°ì¡@\t¥D­n¡@\t¨ä¥¦¡@ + # *** new message + !H_DOMAIN + :E Domain\tRevision date\tRevision count + :T ºô°ì¡@\t§ó§ï¤é´Á¡@\t§ó§ï¼Æ¡@ + # *** new message + !T_DEFAULTIP + :E Default IPs + :T ¹w³] IPs¡@ + # *** new message + !T_IPCONFLICT + :E IP allocation conflict resolution + :T IP ¤À°t¸ò¸ÑªR½Ä¬ð¡@ + # *** new message + !I_IPCONFLICT + :E The IPs you have allocated are already\n + +in use in this DNS.\n + +You should pick either different IPs\n + + (linuxconf supply available ones)\n + +Or you must specify which IP will be the \"main\" IP\n + +and will receive the reverse mapping\n + :T ¤À°tªº IPs ¤w¸gµ¹³o DNS¡@\n + +¨Ï¥Î.¡@\n + +§A¥²»Ý¿ï¤£¦Pªº IPs¡@\n + + (linuxconf ´£¨Ñ¥i¥Îªº IP)¡@\n + +©Î §A»Ý«ü¥X¨º¤@ IP ¬° \"¥D­n\" IP¡@\n + +¤ÎÀò¨ú¤Ï¦V¬M®g¡@\n + # *** new message + !I_DOREV + :E Do reverse mapping on this IP + :T ³o IP ¬O§_¤Ï¦V¬M®g¡@ + # *** new message + !F_ALLOCTO + :E Allocated to + :T ¤À°t¦Ü¡@ + # *** new message + !H_HOST + :E Name\tValue + :T ¦WºÙ¡@\t¼Æ­È¡@ + # *** new message + !E_EXMISSING + :E Example domain %s does not exist + :T ¨Ò¤lºô°ì %s ¤£¦s¦b¡@ + # *** new message + !E_DOMEXIST + :E Domain already exist in this DNS + :T ºô°ì¤w¦b³o DNS ¦s¦b¡@ + # *** new message + !E_NORANGE + :E No range \"%s\" defined + :T ¨S¦³½d³ò \"%s\" ©w¸q¡@ + # *** new message + !E_NOIPAVAIL + :E No IP number available in the range \"%s\" + :T ¦b½d³ò \"%s\" ¨S¦³ IP ¦a§}¥i¥Î¡@ + # *** new message + !E_IVLDOPT + :E Invalid option %s, file %s line %d + :T µL®Äªº¿ï¶µ %s, ÀÉ®× %s ²Ä %d ¦æ¡@ + # *** new message + !M_FEATURES + :E features + :T ©Ê¯à¡@ + # *** new message + !F_FORWARDONLY + :E Forward only + :T ¥u¥i«eÂà¡@ + # *** new message + !I_FORWARDONLY + :E Let the forwarders resolve + :T Åý«eÂྐྵ¸ÑªR¡@ + # *** new message + !F_NORECURSE + :E No recursion + :T ¨S¦³»¼°j¡@ + # *** new message + !I_NORECURSE + :E + # *** new message + !F_NOFETCHGLUE + :E No fetch glue + :T ¨S¦³ fetch glue¡@ + # *** new message + !I_NOFETCHGLUE + :E + # *** new message + !F_QUERYLOG + :E Log each query + :T °O¿ý¨C¤@¬d¸ß¡@ + # *** new message + !T_DNSFEATURES + :E DNS features + :T DNS ©Ê¯à¡@ + # *** new message + !F_XFERNETS + :E Limit zone transfer to networks + :T ­­¨î°Ï°ìÂà¦Üºô¸ô¡@ + # *** new message + !F_BOGUSNS + :E Don't use those servers + :T ¤£¥i¨Ï¥Î³o¨Ç¦øªA¾¹¡@ + # *** new message + !F_FAKEIQUERY + :E Fake iquery + :T °²ªº¬d¸ß¡@ + # *** new message + !N_NOFORWARDER + :E You have selected the option forward only\n + +but there are no forwarders defined.\n + +\n + +Input accepted anyway + :T §A¿ï¤F¥u¦³«eÂà¿ï¶µ¡@\n + +¦ý§A¨S¦³©w¸q«eÂà¿ï¾¹.¡@\n + +\n + # *** new message + !M_DNSSERVER + :E DNS server + :T DNS ¦øªA¾¹¡@ + # *** new message + !E_ISASECOND + :E This DNS is already a secondary for this domain.\n + +It can't be both at the same time + :T ³oºô°ìªº DNS ¤w¦³¦¸¯Å.¡@\n + +³o¨â­Ó¤£¯à¦P®É¦s¦b¡@ + # *** new message + !E_ISAPRIMARY + :E This DNS is already a primary for this domain.\n + +It can't be both at the same time + :T ³oºô°ìªº DNS ¤w¦³¥D­n.¡@\n + +³o¨â­Ó¤£¯à¦P®É¦s¦b¡@ + # *** new message + !M_dnsconf + :E Domain Name Server (DNS) + :T ºô°ì¦WºÙ¦øªA¾¹ (DNS)¡@ + # *** new message + !E_IVLDKEYW + :E Invalid keyword %s\nin file %s, line %d + :T µL®ÄªºÃöÁä¦r %s¡@\n¦bÀÉ®× %s, ²Ä %d ¦æ¡@ + # *** new message + !N_DNSUPDATED + :E The DNS has been updated + :T ³o DNS ¤w¸g§ó·s¡@ + # *** new message + !F_SEARCHLIST + :E Search list + :T Àˬd¦Cªí¡@ + # *** new message + !T_FEATURES + :E Features + :T ©Ê¯à¡@ + # *** new message + !T_MVIRTUAL + :E Dns + # *** new message + !E_VHOSTEXIST + :E DNS domain %s\nis already configured + :T DNS ºô°ì %s¡@\n¤w³]©w¡@ + # *** new message + !T_BASEINFO + :E Basic + :T °ò¥»¡@ + # *** new message + !E_BIND8LEX + :E %s\nfile %s line %d + :T %s¡@\nÀÉ®× %s ²Ä %d ¦æ¡@ + # *** new message + !E_EXPECTARG1 + :E Expect argument followed by a semi-colon + :T ¦b¤Þ¼Æ«á­n¦³¤À¸¹¡@ + # *** new message + !E_EXPECTTYPE + :E Expected either master, slave or hint + :T ´Á«Ý master ,slave ©Î hint¡@ + # *** new message + !E_IVLDIP + :E Expected valid IP number: %s + :T ´Á«Ý¦³®Äªº IP ¦a§}: %s¡@ + # *** new message + !E_ZONETYPE + :E Missing zone type (master or slave) + :T ¯Ê¤Ö°Ï°ìºØÃþ (master ©Î slave)¡@ + # *** new message + !E_EXPECTED + :E Expected token %s + :T ´Á«Ý°O¸¹ %s¡@ + # *** new message + !E_IVLDHOSTIP + :E Invalid host IP number: %s\n + :T µL®Ä¥D¾÷ IP ¦a§}: %s\n¡@ + # *** new message + !E_SETHOSTPART + :E Can't set host part for record type %d\n + :T ¤£¯à°t¸m°O¿ýºØÃþ %dªº¥D¾÷³¡¥÷\n¡@ + # *** new message + !F_ALLOWTRANS + :E Allow transfer to + :T ¥iÂಾ¦Ü¡@ + # *** new message + !F_ALLOWQUERY + :E Allow query from + :T ¥i¥Ñ¦¹¬d¸ß¡@ + # *** new message + !F_LISTENON + :E Listen on + :T ¦b¦¹²âÅ¥¡@ + # *** new message + !T_ACCESS + :E Access control + :T ¦s¨ú±±¨î¡@ + # *** new message + !F_ALLOWUPDATE + :E Allow update from + :T ¥i¥Ñ¦¹§ó·s¡@ + # *** new message + !F_ALSONOTIFY + :E Also notify + :T ¥ç³qª¾¡@ + # *** new message + !H_ACLS + :E Acl names + :T Acl ¦WºÙ¡@ + # *** new message + !I_ADDMATCH + :E Select [Add] to add a new access pattern + :T ¿ï [·s¼W] ·s¼W¤@·sªº¦s¨ú¼Ò¦¡¡@ + # *** new message + !T_ACL + :E Access control list %s + :T ¦s¨ú±±¨î¦Cªí %s¡@ + # *** new message + !I_ADDACL + :E Select [Add] to add a new access control list + :T ¿ï [·s¼W] ·s¼W¤@·sªº¦s¨ú±±¨î¦Cªí¡@ + # *** new message + !T_ACLS + :E Access control lists + :T ¦s¨ú±±¨î¦Cªí¡@ + # *** new message + !M_ACL + :E Access control lists + :T ¦s¨ú±±¨î¦Cªí¡@ + # *** new message + !M_LOGGING + :E Logging + :T °O¿ý¡@ + # *** new message + !H_ACL + :E Host/Network/Acl\tNet size + :T ¥D¾÷/ºô¸ô/Acl\tºôµ¸¤j¤p¡@ + # *** new message + !I_DELACL + :E Select [Del] to delete this + :T ¿ï [§R°£] §R°£³o¶µ¡@ + # *** new message + !M_SECURITY + :E Security + :T ¦w¥þ¡@ + # *** new message + !F_NETHOSTACL + :E Network, Host or ACL + :T ºô¸ô, ¥D¾÷ ©Î ACL¡@ + # *** new message + !F_NETSIZE + :E Network type (/xx) + :T ºô¸ôºØÃþ (/xx)¡@ + # *** new message + !I_DELADDR + :E Select [Del] to delete this entry + :T ¿ï [§R°£] §R°£³o¶µ¥Ø¡@ + # *** new message + !T_ADDRMATCH + :E One address match + :T ¤@¦a§}°t¦X¡@ + # *** new message + !I_ADDRMATCH + :E You must enter here one of the following combination\n + + One host IP number\n + + A network IP number and a number of signigficative bits\n + + (16 for a class B, 24 for a class C network)\n + + One ACL name\n + :T §A¥²¶·¦b¦¹¿é¤J¥H¤U¨ä¤¤¤@²Õ¦X\n¡@ + + ¤@¥D¾÷ IP ¦a§}\n + + ¤@ºô¸ô IP ¦a§}¤Î signigficative bits\n¡@ + + (16 ¥Nªí class B, 24 ¥Nªí class C ºô¸ô)\n¡@ + + ¤@ ACL ¦WºÙ\n¡@ + # *** new message + !E_HOSTIP + :E You must enter a host IP number here + :T §A¥²»Ý¦b¦¹¿é¤J¤@¥D¾÷ IP ¦a§}¡@ + # *** new message + !E_IVLDACL + :E %s is not valid ACL name + :T %s ¤£¬O¤@¦³®Ä ACL ¦WºÙ¡@ + # *** new message + !E_NETWORKIP + :E You must enter a network IP number here + :T §A¥²»Ý¦b¦¹¿é¤J¤@ºô¸ô IP ¦a§}¡@ + # *** new message + !E_NETSIZE + :E You must provide a number between\n1 and 32 + :T §A¥²»Ý´£¨Ñ¤@­Ó¥Ñ\n1 ¦Ü 32 ªº¼Æ­È¡@ + # *** new message + !M_ACCESS + :E Access control + :T ¦s¨ú±±¨î¡@ + # *** new message + !T_DNSACCESS + :E General access control + :T ¤@¯ë¦s¨ú±±¨î¡@ + # *** new message + !B_EDITNAME + :E Edit acl name + :T ½s¿è acl ¦WºÙ¡@ + # *** new message + !T_ACLNAME + :E Acl name + :T Acl ¦WºÙ¡@ + # *** new message + !I_ACLNAME + :E Enter the name of the acl which will be\nused in access control + :T ¿é¤J§@¬°¦s¨ú±±¨îªº\n acl ¦WºÙ¡@ + # *** new message + !E_NOSPACE + :E You must enter a single word.\nNo space allowed! + :T §A¥²»Ý¿é¤J¤@³æ¦r.\n¤¤¶¡¤£¯à¦³ªÅ¦ì!¡@ + # *** new message + !F_ACLNAME + :E Name + :T ¦WºÙ¡@ + # *** new message + !F_NOTIFY + :E Notify + :T ³qª¾¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/firewall.dic linuxconf-1.15/messages/bg5/firewall.dic *** linuxconf-1.14r4/messages/bg5/firewall.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/firewall.dic Tue Apr 13 04:15:06 1999 *************** *** 0 **** --- 1,285 ---- + @version 0 + # *** new message + !M_FIREWALLSYS + :E Firewalling rules + :T ¨¾¤õÀð³W«h¡@ + # *** new message + !H_IPFWRULES + :E Enabled\tProto\tIface\tFrom\t<->\tIface\tTo + :T ±Ò°Ê\¨ó©w¡@\t¤¶­±¡@\t¥Ñ¡@\t<->\t¤¶­±¡@\t¦Ü¡@ + # *** new message + !I_NEWRULES + :E Select [Add] to define a new rule + :T ¿ï [·s¼W] ©w¸q¤@·s³W«h¡@ + # *** new message + !T_EDITFIRE + :E Edit firewalling rules + :T ½s¿è¨¾¤õÀð³W«h¡@ + # *** new message + !I_EDITFIRE + :E You are allowed to edit/add/delete rules + :T §A¥i½s¿è/·s¼W/§R°£ ³W«h¡@ + # *** new message + !ERR_BLOCKING + :E The kernel does not support\nIP_BLOCKING, reconfigure it + :T ³o®Ö¤ß¤£¤ä´©¡@\nIP_BLOCKING, ½Ð¦A³]©w¡@ + # *** new message + !ERR_FORWARDING + :E The kernel does not support\nfirewalling reconfigure it + :T ³o®Ö¤ß¤£¤ä´©\n¨¾¤õÀð, ½Ð¦A³]©w¡@ + # *** new message + !ERR_OUTPUT + :E The kernel does not support\nIP_OUTPUTING, reconfigure it + :T ³o®Ö¤ß¤£¤ä´©¡@\nIP_OUTPUTING, ½Ð¦A³]©w¡@ + # *** new message + !ERR_ACCT + :E The kernel does not support\nIP_ACCOUNTING, reconfigure it + :T ³o®Ö¤ß¤£¤ä´©¡@\nIP_ACCOUNTING, ½Ð¦A³]©w¡@ + # *** new message + !E_IPFWDISABLE + :E Some error has occured, firewall not activated\n\n%s + :T ¦³¬Y¨Ç¿ù»~, ¨¾¤õÀ𤣯à°_°Ê¡@\n\n%s + # *** new message + !E_FWOLDKERN + :E Linuxconf was compiled on an old kernel and does not\n + +support firewalling properly. No rule will be activated. + :T Linuxconf ¦b¤@ªº®Ö¤ß½sĶ¡@\n + +¤£¯à¥¿½T¦a¤ä´©¨¾¤õÀð. ¨S¦³³W«h¥i±Ò°Ê.¡@ + # *** new message + !F_BRULES + :E Inputing rules + :T ¿é¤J³W«h¡@ + # *** new message + !I_AREACTIVE + :E are active + :T ¬O¬¡°Ê¡@ + # *** new message + !F_FRULES + :E forwarding rules + :T Â໼³W«h¡@ + # *** new message + !F_ORULES + :E outputing rules + :T ¿é¥X³W«h¡@ + # *** new message + !F_ARULES + :E accounting rules + :T ­p±b³W«h¡@ + # *** new message + !T_KERNMOD + :E Special kernel modules + :T ¯S§O®Ö¤ß¼Ò¦¡¡@ + # *** new message + !F_MOD_CUSEEME + :E CuSeeMe + # *** new message + !F_MOD_FTP + :E Ftp + # *** new message + !F_MOD_IRC + :E Irc + # *** new message + !F_MOD_RAUDIO + :E Real Audio + # *** new message + !F_MOD_QUAKE + :E Quake + # *** new message + !F_MOD_VDOLIVE + :E Vdolive + # *** new message + !F_REQUIRED + :E required + :T »Ý­n¡@ + # *** new message + !F_IRCPORTS + :E Irc ports(opt) + :T Irc °ð(¿ï¶µ)¡@ + # *** new message + !T_GLOBALCTRL + :E Global control of the firewalling/accounting + :T ¾ãÅé±±¨î¨¾¤õÀð/­p±b¡@ + # *** new message + !I_GLOBALCTRL + :E You are allowed to disable/enable all rule sets\n + +without deleting them. Beware that activating\n + +an empty rule set is closing all doors!!! + :T §A¥i¥H¤£±Ò°Ê/±Ò°Ê ©Ò¦³³W«h¡@\n + +¦Ó¤£»Ý§R°£. ½Ð¯d·N±Ò°Ê¤@ªÅ¥Õ¡@\n + +³W«h·|¥O©Ò¦³ªù®|Ãö¥h!!!¡@ + # *** new message + !E_IVLDIRCPORTS + :E Invalid IRC ports syntax\n + +expecting port [ , port ...]\n + +where port is a number between 1024 and 65000 + :T µL®Äªº IRC °ð»yªk¡@\n + +´Á«Ý port [ , port ...]¡@\n + +¦Ó³o port number ¬O¤¶¥G 1024 ¦Ü 65000¡@ + # *** new message + !E_IVLDIP + :E Invalid IP number or host name or interface: %s\n + :T µL®Äªº IP ¦a§}©Î¥D¾÷¦W©Î¤¶­±: %s¡@\n + # *** new message + !E_MISSINGHN + :E Missing host or network + :T ¯Ê¤Ö¥D¾÷©Îºô¸ô¡@ + # *** new message + !E_ALLOWPORTRANGE + :E Port range only allowed for TCP and UDP protocol + :T ¥u¦³ TCP ©M UDP ¨ó©w¤~¦³°ð½d³ò¡@ + # *** new message + !E_IVLDPRANGE + :E Invalid port range\nExpecting xxxx:yyyy + :T µL®Äªº°ð½d³ò¡@\n´Á«Ý xxxx:yyyy¡@ + # *** new message + !E_ALLOWPORTLIST + :E Ports list only allowed for TCP and UDP protocol + :T ¥u¦³ TCP ¤Î UDP ¨ó©w¤~¦³°ð¦Cªí¡@ + # *** new message + !E_IVLDPORTS + :E Invalid ports list + :T µL®Ä°ð¦Cªí¡@ + # *** new message + !F_PROTOCOL + :E Protocol + :T ¨ó©w¡@ + # *** new message + !F_FROM + :E From + :T ¥Ñ¡@ + # *** new message + !F_HOSTORNET + :E Host or Network + :T ¥D¾÷©Îºô¸ô¡@ + # *** new message + !F_HNETMASK + :E Netmask + :T ¾B¸n¡@ + # *** new message + !F_PORTRANGE + :E Port range + :T °ð½d³ò¡@ + # *** new message + !F_OTHERPORTS + :E Other ports + :T ¨ä¥¦°ð¡@ + # *** new message + !F_INTERFACE + :E Interface + :T ¤¶­±¡@ + # *** new message + !F_PACKFROMANY + :E Packet come from anywhere + :T ¥Ñ¥ô¦ó¦a¤è¨Óªº«Ê¥]¡@ + # *** new message + !F_TO + :E To + :T ¥Ñ¡@ + # *** new message + !E_IVLDPROTO + :E Invalid protocol + :T µL®Ä¨ó©w¡@ + # *** new message + !F_FW_ACCEPT + :E Accept + :T ±µ¨ü¡@ + # *** new message + !F_FW_REJECT + :E Reject + :T ©Úµ´¡@ + # *** new message + !F_FW_DENY + :E Deny + :T ¤£­ã¡@ + # *** new message + !F_RULEPOLICY + :E Rule's policy + :T ³W«hªºµ¦²¤¡@ + # *** new message + !F_RULEACTIVE + :E This rule is active + :T ³o³W«h¬O¬¡°Êªº¡@ + # *** new message + !F_DOMASQUERADE + :E Do masquerading + :T ¹B¦æ°°¸Ë¡@ + # *** new message + !T_FORWARDING + :E Firewall forwarding rule + :T ¨¾¤õÀðÂ໼³W«h¡@ + # *** new message + !T_OUTPUT + :E Firewall Outputing rule + :T ¨¾¤õÀð¿é¥X³W«h¡@ + # *** new message + !F_DOREDIR + :E Redirect to local port + :T §ï¦V¦Ü¥»°ð¡@ + # *** new message + !F_REDIRPORT + :E Redirection port + :T §ï¦V°ð¡@ + # *** new message + !T_INPUTING + :E Firewall inputing rule + :T ¨¾¤õÀð¿é¤J³W«h¡@ + # *** new message + !T_ACCT + :E IP Accouting rule + :T IP ­p±b³W«h¡@ + # *** new message + !E_IVLDINTER + :E Invalid interface %s for firewalling rule + :T ¨¾¤õÀð³W«hªºµL®Ä¤¶­± %s¡@ + # *** new message + !T_USAGE + :E module firewall\n\n No command line option\n + :T ¼Ò²Õ ¨¾¤õÀð¡@\n\n ¨S¦³©R¥O¦æ¿ï¶µ¡@\n + # *** new message + !E_IVLDMASK + :E Invalid netmask + :T µL®Ä¾B¸n¡@ + # *** new message + !M_FWDEF + :E Firewalling defaults (packet filtering) + :T ¨¾¤õÀð¹w³] («Ê¥]¹LÂo)¡@ + # *** new message + !M_BLOCK + :E Blocking firewalling + :T ­­¨î¨¾¤õÀð¡@ + # *** new message + !M_FORWARD + :E Forward firewalling + :T Â໼¨¾¤õÀð¡@ + # *** new message + !M_OUTPUT + :E Output firewalling + :T ¿é¥X¨¾¤õÀð¡@ + # *** new message + !M_ACCT + :E Packet accounting + :T «Ê¥]­p±b¡@ + # *** new message + !M_RSTFIREWALL + :E Turn off firewalling + :T Ãö³¬¨¾¤õÀð¡@ + # *** new message + !N_FIREWALLRESET + :E The firewalling rules have been disabled\n + +They will be activated again anytime you let\n + +Linuxconf activate configuration changes. + :T ³o¨¾¤õÀð³W«h¤w¥¢®Ä¡@\n + +·í Linuxconf ³]©w§ïÅܦA±Ò°Ê®É¡@\n + +³o¨Ç³W«h¥i¦A±Ò°Ê.¡@ + # *** new message + !S_FIREWALL + :E Setting firewalling + :T °t¸m¨¾¤õÀð¡@ + # *** new message + !E_KERNEL2_2 + :E The Linuxconf firewall module is not compatible\n + +with kernel 2.1 and above.\n + +Sorry... + :T Linuxconf ¨¾¤õÀð¼Ò²Õ¸ò kernel¡@\n + +2.1 ©Î¥H¤W¤£°t.¡@\n + +¹ï¤£°_...¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/fstab.dic linuxconf-1.15/messages/bg5/fstab.dic *** linuxconf-1.14r4/messages/bg5/fstab.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/fstab.dic Tue Apr 13 04:15:07 1999 *************** *** 0 **** --- 1,695 ---- + @version 0 + # *** new message + !M_LOCALD + :E Access local drive + :T ¥»¾÷¸Ë¸m¦s¨ú¡@ + # *** new message + !M_NFSVOL + :E Access nfs volume + :T nfs volume ¦s¨ú¡@ + # *** new message + !M_SAMBA + :E Access samba volume (WfWg) + :T samba volume ¦s¨ú (WfWg)¡@ + # *** new message + !M_SWAP + :E Configure swap files and partitions + :T ¼È¦sÀɤΰϬq³]©w¡@ + # *** new message + !M_FIXPERM + :E Check some file permissions + :T ¤@¨ÇÀÉ®×Åv­­¡@ + # *** new message + !T_FSCONF + :E Filesystem configurator + :T Àɮרt²Î³]©w¾¹¡@ + # *** new message + !I_FSCONF + :E This package allows you to configure\n + +which partitions and network volumes your workstation\n + +can access + :T ³o®M¥ó¥iÅý§A³]©w§Aªº¤u§@¯¸¡@\n + +¥i¥H¦s¨ú¨º¤@¤À³Î°Ï (partition)¤Î ¡@\n + +ºô¸ô volumes¡@ + # *** new message + !N_NOSAMBA + :E Samba management not available\nat this time + :T Samba ºÞ²z¦b³o­­¬q¡@\n¤£¾A¥Î¡@ + # *** new message + !P_FIXPERM + :E To fix file permission + :T ­×Å@ÀÉ®×Åv­­¡@ + # *** new message + !N_ALLISOK + :E All is ok + :T ¥þ³¡½T©w¡@ + # *** new message + !E_FSTABARG + :E Invalid argument\n\nfsconf\nfsconf --check\n + :T µL®Ä¤Þ¼Æ¡@\n\nfsconf\nfsconf --check\n + # *** new message + !F_SERVER + :E Server + :T ¦øªA¾¹¡@ + # *** new message + !F_VOLUME + :E Volume + :T ¨÷§O¡@ + # *** new message + !F_SHARE + :E Share + :T ¦@¨É¡@ + # *** new message + !F_PARTITION + :E Partition + :T ¤À³Î°Ï¡@ + # *** new message + !F_TYPE + :E Type + :T ºØÃþ¡@ + # *** new message + !F_EXT2 + :E Standard Linux + :T ¼Ð·Ç Linux¡@ + # *** new message + !F_MINIX + :E Sometime for floppy + :T ¦³®Éµ¹³nºÏºÐ¡@ + # *** new message + !F_UMSDOS + :E Superset of msdos + :T msdos ªº Superset¡@ + # *** new message + !F_OS2 + :E OS/2 High Performance FS + # *** new message + !F_UNIXV + :E Unix system V old fs + :T Unix system V  fs¡@ + # *** new message + !F_XIAFS + :E Old linux fs + :T  linux fs¡@ + # *** new message + !F_MPOINT + :E Mount point + :T ±¾¤JÂI¡@ + # *** new message + !T_GENOPTIONS + :E General options + :T ¤@¯ë¿ï¶µ¡@ + # *** new message + !F_OPTIONS + :E Options + :T ¿ï¶µ¡@ + # *** new message + !F_READONLY + :E Read only + :T ¥u¥iŪ¡@ + # *** new message + !F_USERMNT + :E User mountable + :T ¥Î¤á¥i±¾¤J¡@ + # *** new message + !F_BOOTTIME + :E Not mount at boot time + :T °_¾÷®É¨ø¤U¡@ + # *** new message + !F_NOEXEC + :E No program allowed to execute + :T ¨S¦³µ{¦¡¥i°õ¦æ¡@ + # *** new message + !F_NOSPC + :E No special device file support + :T ¨S¦³¯S§O³]³ÆÀɤ䴩¡@ + # *** new message + !F_NOSUID + :E No setuid programs allowed + :T ¨S¦³ setuid µ{¦¡¥i¥Î¡@ + # *** new message + !T_MSOPT + :E (U)MsDOS and HPFS options + :T (U)MsDOS ¤Î HPFS ¿ï¶µ¡@ + # *** new message + !F_DEFUID + :E default user id + :T ¹w³]¥Î¤á id¡@ + # *** new message + !F_DEFGID + :E default group id + :T ¹w³]¸s²Õ¡@ + # *** new message + !F_DEFPERM + :E default permission + :T ¹w³]Åv­­¡@ + # *** new message + !F_TRAMODE + :E translation mode + :T ½Ķ¼Ò¦¡¡@ + # *** new message + !F_NOTRA + :E No file translation + :T ¨S¦³Àɮ׽͡@ + # *** new message + !F_EXTTRA + :E Translate based on extension + :T ¨Ì©µ¦ùªºÂ½Ä¶¡@ + # *** new message + !F_ALWTRANS + :E Always translate + :T ¥Ã»·Â½Ä¶¡@ + # *** new message + !T_NFSOPT + :E NFS options + :T NFS ¿ï¶µ¡@ + # *** new message + !F_SOFTMNT + :E Soft mount + :T ³n±¾¤J¡@ + # *** new message + !F_BGMOUNT + :E Background mount + :T ­I¹Ò±¾¤J¡@ + # *** new message + !F_READSIZE + :E read size + :T Ū¤J¤j¤p¡@ + # *** new message + !F_OTHEROPT + :E Other options + :T ¨ä¥¦¿ï¶µ¡@ + # *** new message + !F_COMMENT + :E Comment + :T ³Æµù¡@ + # *** new message + !T_VOLSPEC + :E Volume specification + :T Volume ³W®æ¡@ + # *** new message + !I_VOLSPEC + :E You must enter the specification of a volume\n + +or partition and the position (mount point)\n + +where you want to install this volume\n + +in the directory structure of this workstation\n + :T §A¥²»Ý¿é¤J¦w¸Ë¦b³o¤u§@¯¸¡@\n + +¥Ø¿ýµ²ºcªº volume ªº³W®æ©Î¤À³Î°Ï©M¡@\n + +¦ì¸m(±¾¤JÂI)¡@\n + # *** new message + !T_LOCALVOL + :E Local volume + :T ¥»¾÷ volume¡@ + # *** new message + !T_NFSVOL + :E NFS volume + # *** new message + !T_SMBVOL + :E SMB volume + # *** new message + !T_SWAPSPACE + :E Swap space + :T ¸m´«ªÅ¶¡¡@ + # *** new message + !T_NOVELL + :E NOVELL volume + # *** new message + !I_MOUNTS + :E You can edit, add, or delete mounts + :T §A¥i¥H½s¿è,·s¼W, ©Î§R°£±¾¤J¡@ + # *** new message + !I_ADDDEF + :E Select [Add] to add a new definition + :T ¿ï [·s¼W] ·s¼W¤@·s©w¸q¡@ + # *** new message + !N_ROOTDEF + :E The root device has been changed to + :T ³o root ³]³Æ¤wÂà´«¦Ü¡@ + # *** new message + !E_CANTVLD + :E Can't validate the root entry\n + +of your /etc/fstab file for the following\n + +reason:\n + +\n + +%s: %s + :T ¤£¯à½T»{³o¦b /etc/fstab¡@\n + +ªº root entry. ³o¬O¦]¬°:¡@\n + +\n + +%s: %s + # *** new message + !E_NOMNTPT + :E You must specify a mount point(directory)\nfor entry %s\n + :T §A¥²»Ý«ü©ú¶µ¥Ø %s¡@\nªº±¾¤JÂI(¥Ø¿ý)¡@\n + # *** new message + !Q_EXISTMNT + :E Mount point %s\ndoes not exist.\nDo you want to create it ?\n + :T ±¾¤JÂI %s¡@\n¤£¦s¦b.¡@\n§A¬O§_»Ý­n«Ø¥ß¤@­Ó?¡@\n + # *** new message + !T_CANTMOUNT + :E Can't mount + :T ¤£¯à±¾¤J¡@ + # *** new message + !E_ISNOTDIR + :E %s is not a directory\nplease pick a different mount point\n + :T %s ¤£¬O¤@¥Ø¿ý¡@\n½Ð¿ï¥t¤@±¾¤JÂI¡@\n + # *** new message + !N_PROCADD + :E An entry for the /proc file system has been added\n + +The proc file system is needed for quite a few\n + +system utilities such as \"ps\"\n + +\n + :T ¤@­Ó /proc Àɮרt²Î¶µ¥Ø¤w·s¼W¡@\n + +³o proc Àɮרt²Î¹ï¬Y¨Ç¨t²Î¤u¨ã¡@\n + +¡@¬O¦³¥Îªº(¨Ò¦p \"ps\")¡@\n + +\n + # *** new message + !T_NOSWAP + :E No swap !!! + :T ¨S¦³¸m´« !!!¡@ + # *** new message + !Q_NOSWAP + :E Your linux system is lacking\n + +a swap file or swap partition\n + +\n + +This is a severe weakness\n + +Do you want to create a swap now ? + :T §Aªº linux ¨t²Î¯Ê¤Ö¤@¸m´«¡@\n + +ÀɮשΤÀ³Î°Ï¡@\n + +\n + +³o¬O¤@ÄY­«®zÂI¡@\n + +§A¬O§_²{¦b»Ý­n«Ø¥ß¤@¸m´«ªÅ¶¡?¡@ + # *** new message + !T_AREYOUSURE + :E Are you sure + :T ¬O§_ªÖ©w¡@ + # *** new message + !Q_BUGYOU + :E I will bug you about your system\n + +lacking a swap every time I can\n + +\n + +Do you want me to shut off ? + :T §Ú±N·|¨C¦¸´£ÂI§Aªº¡@\n + +¨t²Î¯Ê¤Ö¤F¸m´«ªÅ¶¡¡@\n + +\n + +§A¬O§_§Æ±æ§Ú°±¤î´£ÂI?¡@ + # *** new message + !N_SOMEMODS + :E Some ajustements were made to the /etc/fstab\n\n%s + :T ¦b /etc/fstab ¤º¦³¬Y¨Ç§ó§ï¡@\n\n%s + # *** new message + !E_IVLDFDISK + :E Invalid output format for fdisk\n%s + :T µL®Äªº fdisk ¿é¥X¼Ò¦¡¡@\n%s + # *** new message + !L_CREATING + :E Creating %s %s\n + :T «Ø¥ß %s %s¡@\n + # *** new message + !E_CONFFILE + :E %s\n\nIn file %s, line %d\n + :T %s\n\n¦b %s ÀÉ®×, ²Ä %d ¦æ¡@\n + # *** new message + !E_IVLDOPT + :E Invalid option %s + :T µL®Ä¿ï¶µ %s¡@ + # *** new message + !E_IVLDDEV + :E Invalid device specification\nExpect b|c,major,minor, got %s\n + :T µL®Ä³]³Æ³W®æ¡@\n´Á«Ý b|c,major,minor, ±o %s¡@\n + # *** new message + !E_IVLDTYPE + :E Invalid type field \"%s\" (b, c, d or f expected)\n + :T µL®ÄÄæ¦ìºØÃþ \"%s\" (´Á«Ý b, c, d ©Î f)¡@\n + # *** new message + !E_NOUSER + :E No user \"%s\" defined on this system + :T ¥Î¤á \"%s\" ¨S¦³¦b³o¨t²Î©w¸q¡@ + # *** new message + !E_NOGROUP + :E No group \"%s\" defined on this system + :T ¸s²Õ \"%s\" ¨S¦³¦b³o¨t²Î©w¸q¡@ + # *** new message + !L_CHGOWN + :E Changing owner of file %s to %s.%s\n + :T Âà´«ÀÉ®×¾Ö¦³¤H¥Ñ %s ¦Ü %s. %s¡@\n + # *** new message + !E_CANTCHG + :E **** Can't change the type of file %s\n manual action required!\n + :T **** ¤£¯àÂà´«Àɮ׺ØÃþ %s¡@\n »Ý­n¤â°Ê§ïÅÜ!¡@\n + # *** new message + !L_CHGPERM + :E Changing permissions of file %s from %o to %o\n + :T Âà´«ÀÉ®× %s Åv­­¥Ñ %o ¦Ü %o¡@\n + # *** new message + !E_IVLDLINE + :E Invalid line: %s + :T ²Ä %s ¦æµL®Ä¡@ + # *** new message + !L_DIRECTORY + :E directory + :T ¥Ø¿ý¡@ + # *** new message + !L_FILE + :E file + :T Àɮס@ + # *** new message + !I_FIXMOUNT + :E The directory %s was originally mounted\n + +on %s. It should now be mounted\n + +on %s.\n + +\n + +Should I unmount/mount to fix it ? + :T ¥Ø¿ý %s ­ì¥ý¬O¦b¡@\n + +%s ±¾¤H. ²{¦b¥¦¬O±¾¤J¡@\n + +%s.\n + +\n + +§ÚÀ³§_ unmount/mount ¨Ó­×¥¿?¡@ + # *** new message + !Q_FIXMOUNT + :E Fix target of a mount + :T ­×¥¿±¾¤J¥Ø¼Ð¡@ + # *** new message + !I_REMOUNT + :E The directory %s was originally mounted\n + +with option %s.\n + +It should now be mounted\n + +with options %s.\n + +\n + +Should I remount to fix it ? + :T ¥Ø¿ý %s ­ì¥ý±¾¤J¡@\n + +ªº¿ï¶µ¬O %s.¡@\n + +²{¦b¥¦ªº±¾¤J¿ï¶µ¡@\n + +§ï¬° %s.\n + +\n + +§ÚÀ³§_­«·s±¾¤J¥H­×¥¿?¡@ + # *** new message + !Q_REMOUNT + :E activate new mount options + :T ±Ò°Ê·sªº±¾¤J¿ï¶µ¡@ + # *** new message + !F_DUMPFREQ + :E Dump frequency + # *** new message + !F_CHKPRI + :E Fsck priority + # *** new message + !E_WRONGDEV + :E Device file %s wrongly created\n + +\tExpected major %d, minor %d\n + +\tFound major %d, minor %d\n + +\tManual action required\n + :T ³]³ÆÀÉ %s «Ø¥ß¿ù»~¡@\n + +\t´Á«Ý major %d, minor %d¡@\n + +\t±o¨ì major %d, minor %d¡@\n + +\t»Ý­n¤â°Ê§ï¥¿¡@\n + # *** new message + !Q_DELENTRY + :E Confirm deletion of /etc/fstab entry + :T ½T»{§R°£ /etc/fstab ¶µ¥Ø¡@ + # *** new message + !F_ISOFS + :E Cdrom file system + :T Cdrom Àɮרt²Î¡@ + # *** new message + !H_FSTAB + :E Source\tMount point\tFsType\t Size\tPartition type\tStatus + :T ¨Ó·½¡@\t±¾¤JÂI¡@\tFsType\t ¤j¤p¡@\t¤À³Î°ÏºØÃþ¡@\tª¬ºA¡@ + # *** new message + !F_PATH + :E Path + :T ¸ô®|¡@ + # *** new message + !F_OWNER + :E Owner + :T ¾Ö¦³¤H¡@ + # *** new message + !F_GROUP + :E Group + :T ¸s²Õ¡@ + # *** new message + !T_ONESPEC + :E One file permission setting + :T ¤@­ÓÀÉ®×Åv­­³]©w¡@ + # *** new message + !H_PERMS + :E Path\tType\tOwner\tPermissions\tMod + :T ¸ô®|¡@\tºØÃþ¡@\t¾Ö¦³¤H¡@\tÅv­­¡@\tMod¡@ + # *** new message + !T_FILE + :E File + :T Àɮס@ + # *** new message + !T_DIR + :E Dir + # *** new message + !T_PERMS + :E Permissions of all config files + :T ©Ò¦³³]©wÀɪºÅv­­¡@ + # *** new message + !I_PERMS + :E You can see and change the permission\n + +settings of all configuration files and directories\n + +managed by linuxconf. + :T §A¥i¥HÀ˵ø¤Î§ó§ï©Ò¦³¡@\n + +¥Ñ linuxconf ºÞ²zªº³]©wÀÉ¡@\n + +©M¥Ø¿ýªºÅv­­³]©w¡@ + # *** new message + !T_CHR + :E Chrdev + # *** new message + !T_BLK + :E Blkdev + # *** new message + !F_MAYEXEC + :E May execute + :T ¥i°õ¦æ¡@ + # *** new message + !F_MAYWRITE + :E May write + :T ¥i¼g¡@ + # *** new message + !F_MAYREAD + :E May read + :T ¥iŪ¡@ + # *** new message + !T_USER + :E User + :T ¥Î¤á¡@ + # *** new message + !T_GROUP + :E Group + :T ¸s²Õ¡@ + # *** new message + !T_OTHER + :E Others + :T ¨ä¥¦¡@ + # *** new message + !F_USRQUOTA + :E User quota enabled + :T ¥Î¤á­­ÃB±Ò°Ê¡@ + # *** new message + !F_GRPQUOTA + :E Group quota enabled + :T ¸s²Õ­­ÃB±Ò°Ê¡@ + # *** new message + !T_QUOTADEF + :E Default quota for users and groups + :T ¹w³]¥Î¤á¤Î¸s²Õ­­ÃB¡@ + # *** new message + !I_QUOTADEF + :E + # *** new message + !M_QUOTA + :E Set quota defaults + :T ³]©w­­ÃB¹w³]¡@ + # *** new message + !F_SOFTK + :E Disk space soft limit + :T ºÏ½LªÅ¶¡ ³n­­¶q¡@ + # *** new message + !F_HARDK + :E Disk space hard limit + :T ºÏ½LªÅ¶¡ µw­­¶q¡@ + # *** new message + !F_GRACEK + :E Disk space grace period + :T ºÏ½LªÅ¶¡ grace period¡@ + # *** new message + !F_SOFTF + :E Files soft limit + :T ÀÉ®× ³n­­¶q¡@ + # *** new message + !F_HARDF + :E Files hard limit + :T ÀÉ®× µw­­¶q¡@ + # *** new message + !F_GRACEF + :E Files grace period + :T ÀÉ®× grace period¡@ + # *** new message + !T_USERDEF + :E User default + :T ¥Î¤á¹w³]¡@ + # *** new message + !T_GROUPDEF + :E Group default + :T ¸s²Õ¹w³]¡@ + # *** new message + !I_QUOTACHECK + :E You have enable disk quota management on\n + +the file-system %s.\n + +To make this effective, we must run the quotacheck utility.\n + +It will browse through the directories and update the current\n + +disk usage for each users and groups. This will take a while\n + +\n + +Should we do this now ? + :T §A¤w¸g±Ò°Ê¤FÀɮרt²Î %s¡@\n + +ªººÏ½L­­ÃBºÞ²z¡@\n + +¬°¨Ï§ó¦³®Ä²v, §Ú­Ì­n°õ¦æ quotacheck ¤u¨ã.¡@\n + +³o¥i¥H¦b¥Ø¿ý¶¡ÂsÄý¤Î§ó·s¨C¤@¥Î¤á¤Î¸s²Õ¡@\n + +ªº¥Ø«eºÏ½L¥Î¶q. ³o»Ý¤@¨Ç®É¶¡¡@\n + +\n + +§Ú¥i§_²{¦b¶i¦æ?¡@ + # *** new message + !T_QUOTACHECK + :E Installing quota on a file-system + :T ¦w¸ËÀɮרt²Î­­ÃB¡@ + # *** new message + !F_VFAT + :E DOS with long file name + :T DOS ªºªøÀɮצWºÙ¡@ + # *** new message + !P_BASE + :E Base + :T °ò¥»¡@ + # *** new message + !P_OPTIONS + :E Options + :T ¿ï¶µ¡@ + # *** new message + !P_MSDOS + :E Dos options + :T Dos ¿ï¶µ¡@ + # *** new message + !P_MISC + :E Misc. + :T Âø¶µ¡@ + # *** new message + !T_SPCBITS + :E Special flags + :T ¯S§OºX¸¹¡@ + # *** new message + !F_SETUID + :E Setuid flag + :T Setuid ºX¸¹¡@ + # *** new message + !F_SETGID + :E Setgid flag + :T Setgid ºX¸¹¡@ + # *** new message + !F_ONLYOWNER + :E Restriction on directory + :T ¥Ø¿ýªº­­¨î¡@ + # *** new message + !F_WRITESIZE + :E write size + :T ¼g¤Jªº¤j¤p¡@ + # *** new message + !E_NODEVQUOTA + :E There is currently no partition with disk quota enabled.\n + +Visit the \"Access local drive\" menu and enable\n + +disk quota on selected volumes. + :T ¨S¦³¤À³Î°Ï¦³ºÏ½L­­ÃB¤w±Ò°Ê.¡@\n + +½Ð°Ñ·Ó \"¥»¾÷ºÏ½L¦s¨ú\" µæ³æ¤Î±Ò°Ê¡@\n + +¤w¿ïªº¨÷§OªººÏ½L­­ÃB.¡@ + # *** new message + !H_FSTABNET + :E Source\tMount point\tFsType\tStatus + :T ¨Ó·½¡@\t±¾¤JÂI¡@\tFsType\tª¬ºA¡@ + # *** new message + !B_MOUNT + :E Mount + :T ±¾¤J¡@ + # *** new message + !B_UMOUNT + :E Unmount + :T ¨ø¤U¡@ + # *** new message + !E_ISMOUNTED + :E This file system is already mounted + :T ³oÀɮרt²Î¤w±¾¤J¡@ + # *** new message + !E_ISNOTMOUNTED + :E This file system is not mounted + :T ³oÀɮרt²Î¥¼±¾¤J¡@ + # *** new message + !I_MOUNTED + :E Mounted + :T ¤w±¾¤J¡@ + # *** new message + !I_CTRLMOUNTS + :E You can mount or unmount file systems + :T §A¥i¥H±¾¤J©Î¨ø¤U¤JÀɮרt²Î¡@ + # *** new message + !Q_UMOUNT + :E Unmount file system + :T ¨ø¤UÀɮרt²Î¡@ + # *** new message + !I_UMOUNT + :E Do you want to unmount this file system + :T §A¬O§_­n¨ø¤U³oÀɮרt²Î¡@ + # *** new message + !Q_MOUNT + :E Mount file system + :T ±¾¤JÀɮרt²Î¡@ + # *** new message + !I_MOUNT + :E Do you want to mount this file system + :T §A¬O§_­n±¾¤J³o¨t²Î¡@ + # *** new message + !M_MANUAL + :E Mount other NFS file systems + :T ±¾¤J¨ä¥¦ NFS Àɮרt²Î¡@ + # *** new message + !T_FSCONTROL + :E Control file systems + :T ±±¨îÀɮרt²Î¡@ + # *** new message + !I_FSCONTROL + :E You can mount/unmount file systems from here + :T §A¥i¥H¥Ñ¦¹ ±¾¤J/¨ø¤U Àɮרt²Î¡@ + # *** new message + !M_CTRLLOCAL + :E Control configured local drives + :T ±±¨î³]©wªº¥»¾÷ºÏ½L¡@ + # *** new message + !M_CTRLNFS + :E Control configured nfs volumes + :T ±±¨î¤w³]©wªº nfs volumes¡@ + # *** new message + !T_MANUALNFS + :E Mounting manually + :T ¤â°Ê±¾¤J¡@ + # *** new message + !I_MANUALNFS + :E You can extend the current file system tree\n + +by appending one NFS volume anywhere + :T §A¥i¥H¥Ñ¥[¤J¤@ NFS volume¡@\n + +¥H©µ¦ù¥Ø«eªºÀɮרt²Î¾ð¡@ + # *** new message + !E_NOMPT + :E Mount point directory does not exist + :T ±¾¤JÂI¥Ø¿ý¤£¦s¦b¡@ + # *** new message + !N_UMOUNTOK + :E Umount successful + :T ¨ø¤U¦¨¥\\¡@ + # *** new message + !N_MOUNTOK + :E Mount successful + :T ±¾¤J¦¨¥\\¡@ + # *** new message + !F_NOLOCKMNT + :E Nolock mount + :T µLÂê±¾¤J¡@ + + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/inittab.dic linuxconf-1.15/messages/bg5/inittab.dic *** linuxconf-1.14r4/messages/bg5/inittab.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/inittab.dic Tue Apr 13 04:15:07 1999 *************** *** 0 **** --- 1,20 ---- + @version 0 + # *** new message + !M_inittab + :E Initial system services + :T ±Ò©l¨t²ÎªA°È¡@ + # *** new message + !T_USAGE + :E Module inittab\n\n --setdefaultlevel default_runlevel\n + # *** new message + !F_DEFAULTLEVEL + :E Default runlevel + :T ¹w³] runlevel¡@ + # *** new message + !T_DEFLEVEL + :E Init default runlevel + :T ±Ò©l¹w³] runlevel¡@ + # *** new message + !F_RUNLEVEL + :E Run level %d + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/lang.title linuxconf-1.15/messages/bg5/lang.title *** linuxconf-1.14r4/messages/bg5/lang.title Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/lang.title Thu Apr 8 04:25:32 1999 *************** *** 0 **** --- 1 ---- + Big 5 Chinese diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/mailconf.dic linuxconf-1.15/messages/bg5/mailconf.dic *** linuxconf-1.14r4/messages/bg5/mailconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/mailconf.dic Tue Apr 13 04:15:08 1999 *************** *** 0 **** --- 1,1073 ---- + @version 0 + # *** new message + !N_MISSING + :E %s does not exist + :T %s ¤£¦s¦b¡@ + # *** new message + !N_NOEXEC + :E %s is not executable + :T %s ¤£¯à°õ¦æ¡@ + # *** new message + !F_ALIASNAME + :E alias name + :T §O¦W¡@ + # *** new message + !F_FILTER + :E Filter program + :T ¹LÂoµ{¦¡¡@ + # *** new message + !F_LISTFILE + :E List file + :T ¹LÂoµ{¦¡¡@ + # *** new message + !T_ONEALIAS + :E One alias definition + :T ¤@­Ó§O¦W©w¸q¡@ + # *** new message + !I_ONEALIAS + :E Use the button ADD to get more space\nin case you are defining a mailing list\n + :T ¦p§A¥¿¦b©w¸q¤@¹q¶l¦W³æ¡@\n + +§A¥i¥H¨Ï¥Î«ö¶s ·s¼W Àò¨ú§ó¦hªÅ¶¡¡@\n + # *** new message + !P_EDITALIAS + :E edit an alias + :T ½s½r¤@§O¦W¡@ + # *** new message + !E_NONAME + :E You must provide a name + :T §A¤@©w­n´£¨Ñ¤@¦W¦r¡@ + # *** new message + !E_ALLEMPTY + :E All values are empty + :T ©Ò¦³¼Æ­È§¡¬OªÅ¥Õ¡@ + # *** new message + !E_DUPALIAS + :E Duplicate alias, rejected + :T ©Úµ´­«ÂЧO¦W¡@ + # *** new message + !T_EDITALIASES + :E Edit global mail aliases + :T ½s¿èÁ`Åé¹q¶l§O¦W¡@ + # *** new message + !IEDITALIASES + :E You are allowed to edit/add/delete\nsystem wide aliases for electronic mail + :T §A¥i¥H ½s¿è/·s¼W/§R°£¡@\n¾ãÅé¨t²Î¹q¶l§O¦W¡@ + # *** new message + !I_NEWALIAS + :E Select [Add] to add a new alias + :T ¿ï [·s¼W] ·s¼W¤@·s§O¦W¡@ + # *** new message + !P_WRITE + :E write %s + :T ¼g¤J %s¡@ + # *** new message + !T_WHENREC + :E Domain aliases + :T ºô°ì§O¦W¡@ + # *** new message + !F_YOURSYS + :E Aliases for your system + :T §Aªº¨t²Î§O¦W¡@ + # *** new message + !F_PRESENT + :E Present your system as + :T §Aªº¨t²Îªí¥Ü¬°¡@ + # *** new message + !F_MAILHOST + :E Mail server + :T ¶l¥ó¦øªA¾¹¡@ + # *** new message + !F_SMARTHOST + :E Mail gateway + :T ¶l¥ó¹h¹D¡@ + # *** new message + !F_SMARTMAIL + :E Mail gateway protocol + :T ¶l¥ó¹h¹D¨ó©w¡@ + # *** new message + !F_ESMTP + :E Enhanced smtp + :T ¥[±jªº smtp¡@ + # *** new message + !F_SMTP + :E Normal smtp + :T ¥¿±`ªº smtp¡@ + # *** new message + !F_MODERNUUCP + :E Recommended modern UUCP + :T «ØÄ³ªº²{¥N UUCP¡@ + # *** new message + !F_OLDUUCP + :E Old uucp + :T ªº uucp¡@ + # *** new message + !T_FEATURES + :E Features + :T ©Ê¯à¡@ + # *** new message + !F_NOBATCH + :E no batching for uucp mail + :T uucp ¶l¥ó¨S¦³§å¦¸¡@ + # *** new message + !F_MAXSIZE + :E Messages size limit + :T °T®§¤j¤p­­¨î¡@ + # *** new message + !F_DELIVER + :E Deliver locally to users + :T ¥»¾÷ªº¶Ç°e¦Ü¥Î¤á¡@ + # *** new message + !F_NOMASQ + :E No masquerade from users + :T ¥Î¤á¨S¦³°°¸Ë¡@ + # *** new message + !F_SPECIAL + :E Special routing database format + :T ¯S§O¸ô¥Ñ¸ê®Æ®w¼Ò¦¡¡@ + # *** new message + !T_DNSFEATURES + :E DNS features + :T DNS ©Ê¯à¡@ + # *** new message + !F_WAITDNS + :E wait for DNS + :T µ¥«Ý DNS¡@ + # *** new message + !F_NODNS + :E don't use DNS + :T ¤£¥Î DNS¡@ + # *** new message + !F_LIMITDNS + :E Limit DNS for those domains + :T ³o¨Çºô°ìªº DNS ­­¨î¡@ + # *** new message + !T_BASIC + :E Basic Sendmail configuration + :T °ò¥» Sendmail ³]©w¡@ + # *** new message + !P_CONFMAIL + :E configure sendmail + :T ³]©w sendmail¡@ + # *** new message + !N_HASGEN + :E %s has been regenerated! + :T %s ¤w¸g²£¥Í¡@ + # *** new message + !M_BASIC + :E basic information + :T °ò¥»¸ê®Æ¡@ + # *** new message + !M_SPECIAL + :E special (domain) routing + :T ¯S§O (ºô°ì) ¸ô¥Ñ¡@ + # *** new message + !M_COMPLEX + :E complex (user) routing + :T ½ÆÂø (¥Î¤á) ¸ô¥Ñ¡@ + # *** new message + !M_ALIASES + :E user aliases + :T ¥Î¤á§O¦W¡@ + # *** new message + !M_TESTS + :E test cases + :T ´ú¸Õ®×¨Ò¡@ + # *** new message + !M_CONFIG + :E Configure + :T ³]©w¡@ + # *** new message + !M_SETTING + :E Setting + :T ½Õ¾ã¡@ + # *** new message + !T_SENDMAIL + :E Sendmail configurator + :T Sendmail ³]©w¾¹¡@ + # *** new message + !I_SENDMAIL + :E This package allows you to configure\nSendmail, the mail delivery system\n + :T ³o®M¥ó¥iÅý§A³]©w¡@\n¹q¶lµo°e¨t²Î (Sendmail)¡@\n + # *** new message + !F_DEST + :E Destination + :T ¥Øªº¦a¡@ + # *** new message + !F_FORWARD + :E Forwader + :T Â໼¾¹¡@ + # *** new message + !F_MANAGE + :E Manage sub-domain identically + :T ¬Û¦P¦aºÞ²z¤lºô°ì¡@ + # *** new message + !F_MAILER + :E Mailer + :T ¶l¥ó¨t²Î¡@ + # *** new message + !T_SPECIAL + :E Special routing + :T ¯S§O¸ô¥Ñ¡@ + # *** new message + !I_SPECIAL + :E Enter a destination (host) and the\n + +forwarder (another host) used to reach it\n + +and the mailer (transport) needed + :T ¿é¤J¤@¥Øªº¦a (¥D¾÷) ©M¡@\n + +¨ì¦¹ªºÂ໼¾¹ (¥t¤@¥D¾÷)¡@\n + +¤Î©Ò»Ýªº¶l¥ó¨t²Î(Âà°e)¡@ + # *** new message + !E_EMPTYF + :E All field must be filled + :T ©Ò¦³Äæ¦ì¤@©w­n¶ñ¤W¡@ + # *** new message + !T_SPECIALS + :E Special routings + :T ¯S§O¸ô¥Ñ¡@ + # *** new message + !I_SPECIALS + :E You are allowed to edit/add/remove routings\n + :T §A¥i¥H ½s½r/·s¼W/²¾°£ ¸ô¥Ñ¡@\n + # *** new message + !I_ADDONE + :E Select [Add] to add one routing spec + :T ¿ï [·s¼W] ·s¼W¤@¸ô¥Ñ³W®æ¡@ + # *** new message + !F_FROM + :E from + :T ¥Ñ¡@ + # *** new message + !F_TO + :E to + :T ¦Ü¡@ + # *** new message + !F_NEWFROM + :E new from + :T ·sªº(¥Ñ)¡@ + # *** new message + !F_NEWTO + :E rewriten to + :T ­«¼g¦Ü¡@ + # *** new message + !F_ROUTER + :E Forward to server(opt) + :T Â໼¦Ü¦øªA¾¹(¿ï¶µ)¡@ + # *** new message + !F_DELCPLX + :E Select [Del] to delete this record + :T ¿ï [§R°£] §R°£³o°O¿ý¡@ + # *** new message + !T_NEWCOMPLEXROUTE + :E New complex route + :T ·sªº½ÆÂø¸ô¥Ñ¡@ + # *** new message + !T_COMPLEXROUTE + :E complex routing for %s + :T %s ªº½ÆÂø¸ô¥Ñ¡@ + # *** new message + !I_COMPLEXROUTE + :E You are allowed to intercept email going to a user\n + +and redirect this to a new mail server,\n + +using a different protocol.\n + +In the process, you can rewrite the TO field\n + +and even the from field\n + :T §A¥i¥HºI°±¨ì¤@¥Î¤áªº¹q¶l¡@\n + +¸òµÛ¨Ï¥Î¥t¤@¨ó©w¡@\n + +Âà¦Ü¥t¤@¹q¶l¦øªA¾¹.¡@\n + +¦b³o¹Lµ{¤¤, §A¥i¥H­«¼g ¦Ü ³oÄæ,¡@\n + +¬Æ¦Ü ¥Ñ ³oÄæ¡@\n + # *** new message + !T_ADDCPLX + :E Select [Add] to add a complex routing rule + :T ¿ï [·s¼W] ·s¼W¤@½ÆÂø¸ô¥Ñ³W«h¡@ + # *** new message + !T_COMPLEXROUTES + :E Complex routings + :T ½ÆÂø¸ô¥Ñ¡@ + # *** new message + !I_COMPLEXROUTES + :E You can setup multiple complex routing for email\n + +The key is the destination, including the user name\n + :T §A¥i¥H°t¸m¹q¶l½ÆÂø¸ô¥Ñ¡@\n + +¥Øªº¦a(¥]¬A ¥Î¤á¦W)¬OÃöÁä¦r¡@\n + # *** new message + !M_GENERATE + :E Generate + :T ²£¥Í¡@ + # *** new message + !Q_GENSENDMAIL + :E Generating %s + :T ²£¥Í %s¡@ + # *** new message + !I_GENSENDMAIL + :E You have modified sendmail's configuration.\n + +A new %s must be generated.\n + +Do you want to do it now + :T §A¤w§ó§ï sendmail ªº³]©w¡@\n + +¤@­Ó·sªº %s ¥²»Ý²£¥Í¡@\n + +§A¬O§_­n¥ß§Y¶i¦æ¡@ + # *** new message + !F_CPLXACTIVE + :E This rule is active + :T ³o³W«h¬O²{¥Îªº¡@ + # *** new message + !F_COMMENT + :E Comment + :T ³Æµù¡@ + # *** new message + !F_LOCALMAILER + :E Local delivery agent + :T ¥»¾÷¶Ç°e¥N²z¡@ + # *** new message + !F_NOEMPTY + :E Field \"%s\" can't be empty\n + :T \"%s\" Äæ¤£¯àªÅ¥Õ¡@\n + # *** new message + !F_IVLDTO + :E Field \"%s\" is invalid or incomplete\n Was expecting user@domain format\n + :T \"%s\" Äæ¬OµL®Ä©Î¤£§¹¾ã¡@\n ´Á«Ý user@domain ¼Ò¦¡¡@\n + # *** new message + !F_USEMTABLE + :E special routing database + :T ¯S§O¸ô¥Ñ¸ê®Æ®w¡@ + # *** new message + !I_USEMTABLE + :E Enabled + :T ±Ò°Ê¡@ + # *** new message + !I_ADDEMPTY + :E Select [Add] to add an empty alias line + :T ¿ï [·s¼W] ·s¼W¤@ªÅ¥Õ§O¦W¦æ¡@ + # *** new message + !E_MTABLEON + :E The /etc/sendmail.cf will be generated without\n + +special (domain) routing enabled. This system\n + +has already some special routing definition(s)\n + +and this sendmail.cf won't make use of them.\n + +Enable \"special routing database\" in the\n + +\"basic information\" dialog to fix this\n + +and regenerate the sendmail.cf. + :T /etc/sendmail.cf ±N·|²£¥Í¦Ó¤£¡@\n + +·|±Ò°Ê¯S§O (ºô°ì) ¸ô¥Ñ. ÁöµM³o¨t²Î¡@\n + +¤w¦³¯S§O¸ô¥Ñ©w¸q¦ý³o sendmail.cf ¤£·|¡@\n + +¨Ï¥Î¥¦. ½Ð±Ò°Ê¦b \"°ò¥»¸ê®Æ\" ¹ï¸Ü²°ªº¡@\n + +\"¯S§O¸ô¥Ñ¸ê®Æ®w\" §@­×¥¿¤Î¡@\n + +­«·s²£¥Í sendmail.cf.¡@ + # *** new message + !M_VIRTDOM + :E virtual email domain + :T µêÀÀ¹q¶lºô°ì¡@ + # *** new message + !F_VDOMAIN + :E Virtual domain (fqdn) + :T µêÀÀºô°ì (fqdn)¡@ + # *** new message + !F_ALIASFILE + :E Alternate Aliases files(opt) + :T ´À¥Î§O¦WÀÉ®×(¿ï¶µ)¡@ + # *** new message + !T_ONEVDOMAIN + :E One vdomain definition + :T ¤@­ÓµêÀÀºô°ì©w¸q¡@ + # *** new message + !I_ONEVDOMAIN + :E Select [Add] to add one virtual domain + :T ¿ï [·s¼W] ·s¼W¤@µêÀÀºô°ì¡@ + # *** new message + !T_VDOMAINS + :E Virtual email domains + :T µêÀÀ¹q¶lºô°ì¡@ + # *** new message + !E_VDOMEXIST + :E This virtual domain is already defined + :T ³oµêÀÀºô°ì¤w©w¸q¡@ + # *** new message + !I_DEFVDOMAIN + :E + # *** new message + !I_VDOMAINS + :E You can define new virtual email domain\n + +virtual email hosting is a new concept.\n + +It is not required for most mail server configuration.\n + :T §A¥i¥H©w¸q·sªºµêÀÀ¹q¶lºô°ì¡@\n + +µêÀÀ¹q¶l«Ø¥ß¬O¤@·sªº·§©À.¡@\n + +¤j³¡¤À¹q¶l¦øªA¾¹³]©w³£¤£»Ý¦¹.¡@\n + # *** new message + !E_NOVDOM + :E No virtual email domain defined + :T ¨S¦³¤w©w¸qµêÀÀ¹q¶lºô°ì¡@ + # *** new message + !T_PICKVDOM + :E Pick the domain + :T ¿ïºô°ì¡@ + # *** new message + !T_VIRTDOMPRIV + :E Virtual email domains + :T µêÀÀ¹q¶lºô°ì¡@ + # *** new message + !T_DALIAS + :E Aliases for this domain + :T ³oºô°ìªº§O¦W¡@ + # *** new message + !M_VALIASES + :E virtual domain user aliases + :T µêÀÀºô°ì¥Î¤á§O¦W¡@ + # *** new message + !T_SELALIAS + :E Alias files for domain %s + :T ºô°ì %s ªº§O¦WÀÉ¡@ + # *** new message + !I_SELALIAS + :E This virtual email domain has several alias file\npick the one to edit + :T ³oµêÀÀ¹q¶lºô°ì¦³¼Æ­Ó§O¦WÀÉ¡@\n¿ï¤@½s¿è¡@ + # *** new message + !F_MAINSERV + :E Accept email for %s + :T ±µ¨ü %s ªº¹q¶l¡@ + # *** new message + !E_NODOMAIN + :E Can't compute the domain name of this server\n + +It won't accept email correctly.\n + +Please enter a fully qualified domain name in the\n + +\"Basic host information\" screen. + :T ¤£¯àºâ¥X³o¦øªA¾¹ªººô°ì¦W¡@\n + +³o±N¥O¹q¶l¤£¯à¥¿±`±µ¨ü.¡@\n + +½Ð¦b \"°ò¥»¥D¾÷¸êÍS\" ­¶¡@\n + +¿é¤J¤@§¹¾ã­­©wºô°ì¦W(FQDN)¡@ + # *** new message + !F_FALLBACK + :E Fallback destination (opt) + :T «á°h¥Øªº¦a(¿ï¶µ)¡@ + # *** new message + !F_MASQACTIVE + :E This rule is active + :T ³o³W«h¬O¬¡°Êªº¡@ + # *** new message + !T_NEWMASQ + :E New masquerading rule + :T ·sªº°°¸Ë³W«h¡@ + # *** new message + !T_MASQ + :E Masquerading rule for %s + :T %s ªº°°¸Ë³W«h¡@ + # *** new message + !I_MASQUERADING + :E You are allowed to intercept email originating from a\n + +domain or a user of a domain and transform it so it now\n + +originate from another domain or another user of another domain\n + :T §A¥i¥HºI°±¥Ñ¬Y¤@ºô°ì©Î¬Y¤@ºô°ìªº¥Î¤áªº¹q¶l¡@\n + +µM«áÂà´«¥O¥¦Åܬ° ¥t¤@ºô°ì©Î¥t¤@ºô°ìªº¥t¤@¥Î¤á¡@\n + +ªº¹q¶l¡@\n + # *** new message + !T_ADDMASQ + :E Select [Add] to define a new masquerading rule + :T ¿ï [·s¼W] ©w¸q¤@·sªº°°¸Ë³W«h¡@ + # *** new message + !T_MASQRULES + :E Masquerading rules + :T °°¸Ë³W«h¡@ + # *** new message + !I_MASQRULES + :E You can setup multiple masquerading rules.\n + +The key is the origin of the message, including the user name\n + :T §A¥i¥H³]©w¦h­«°°¸Ë³W«h.¡@\n + +°T®§ªº¨Ó·½(¥]¬A¥Î¤á¦W)¬OÆ_¡@\n + # *** new message + !M_MASQ + :E masquerading rules + :T °°¸Ë³W«h¡@ + # *** new message + !E_AMBIGIOUS + :E Ambigious redirection.\n + +You must specify a user account in the \"rewriten to\"\n + +field.\n + :T ¤£©úÂà¦V.¡@\n + +§A¥²»Ý¦b \"­«¼g¦Ü\"¤@Äæ¤¤«ü©ú¡@\n + +¨º¤@¥Î¤á±b¸¹¡@ + # *** new message + !O_PROBED + :E Let linuxconf probe + :T Åý linuxconf À˵ø¡@ + # *** new message + !E_NOSUCHVDOM + :E Virtual domain %s does not exist + :T µêÀÀºô°ì %s ¤£¦s¦b¡@ + # *** new message + !T_VDOMLISTS + :E List of virtual email domains on this server + :T ³o¦øªA¾¹ªºµêÀÀ¹q¶lºô°ìªº¦Cªí¡@ + # *** new message + !T_VDOMAIN + :E Virtual email domain + :T µêÀÀ¹q¶lºô°ì¡@ + # *** new message + !T_CHGVPASS + :E Change your password + :T Âà´«§Aªº±K½X¡@ + # *** new message + !F_STARTUID + :E Allocate UID from + :T ¥Ñ³o¤À°t UID:¡@ + # *** new message + !P_MANAGEDOM + :E manage a virtual domain + :T ºÞ²z¤@µêÀÀºô°ì¡@ + # *** new message + !M_FAX + :E mail to fax gateway + :T ¹q¶l¦Ü¶Ç¯u¹h¹D¡@ + # *** new message + !F_FAXGTW + :E Mail to Fax gateway + :T ¹q¶l¦Ü¶Ç¯u¹h¹D¡@ + # *** new message + !F_ENABLE + :E is active + :T ¬O¹B¦æ¤¤¡@ + # *** new message + !F_FAXSPOOL + :E Spool command + :T ±Æ¦s©R¥O¡@ + # *** new message + !T_MAILFAX + :E Mail to Fax gateway configuration + :T ¹q¶l¦Ü¶Ç¯u¹h¹D³]©w¡@ + # *** new message + !I_MAILFAX + :E You can control the operation of the mail to fax\ngateway + :T §A¥i¥H±±¨î¹q¶l¦Ü¶Ç¯u¹h¹D¡@\nªº¹B¦æ¡@ + # *** new message + !H_ZONES + :E Zone ID\tZone prefix\tLen\tRule + :T °Ï°ì ID¡@\t°Ï°ì prefix¡@\tLen\t³W«h¡@ + # *** new message + !M_ADDZONE + :E Select [Add] to define a new fax zone + :T ¿ï [·s¼W] ©w¸q¤@·sªº¶Ç¯u°Ï°ì¡@ + # *** new message + !T_ZONES + :E Fax zones + :T ¶Ç¯u°Ï°ì¡@ + # *** new message + !I_ZONES + :E You can specify which telephone zones are\navailable for faxing. + :T §A¥i¥H©w¸q¥i¥Îªº¶Ç¯u¡@\n¹q¸Ü°Ï°ì¡@ + # *** new message + !F_FAXLOG + :E Log file + :T °O¿ýÀɮס@ + # *** new message + !M_FAXUSERS + :E Fax users + :T ¶Ç¯u¥Î¤á¡@ + # *** new message + !M_FAXZONES + :E Fax zones + :T ¶Ç¯u°Ï°ì¡@ + # *** new message + !M_FAXALIASES + :E Fax aliases + :T ¶Ç¯u§O¦W¡@ + # *** new message + !I_MAINMAILFAX + :E This menu let you configure how the gateway operates\n + +This controls who can fax, how and where + :T ³oµæ³æÅý§A³]©w¹h¹D¹B¦æªº¤èªk¡@\n + +³o¥i±±¨î½Ö,«ç¼Ë¤Î¨ºùØ¥i¶Ç¯u¡@ + # *** new message + !F_LEN + :E phone number length + :T ¹q¸Ü¸¹½Xªø«×¡@ + # *** new message + !T_USERS + :E users allowed to fax + :T ¥i¶Ç¯uªº¥Î¤á¡@ + # *** new message + !T_ZONE + :E One fax zone + :T ¤@­Ó¶Ç¯uªº°Ï°ì¡@ + # *** new message + !I_ZONE + :E You can define the specification of one fax zone + :T §A¥i¥H©w¸q¤@¶Ç¯u°Ï°ìªº³W®æ¡@ + # *** new message + !F_ZONE + :E Phone zone prefix + :T ¹q¸Ü°Ï°ì prefix¡@ + # *** new message + !Q_DELRECORD + :E Delete this record + :T §R°£³o°O¿ý¡@ + # *** new message + !F_MANAGEFAX + :E Mail to Fax manager + :T ¹q¶l¦Ü¶Ç¯uºÞ²z­û¡@ + # *** new message + !P_MAILFAX + :E manage the mail to fax gateway + :T ºÞ²z³o¹q¶l¦Ü¶Ç¯u¹h¹D¡@ + # *** new message + !F_FAXLOGC + :E Log command + :T °O¿ý©R¥O¡@ + # *** new message + !F_DEFERDELIV + :E Don't try to deliver immediatly + :T ¤Å¹Á¸Õ¥ß§Y¶Ç°e¡@ + # *** new message + !F_BOGUSHELO + :E Support bogus mail clients(HELO) + :T ¤ä´© bogus ¹q¶l«È¤áºÝ(HELO)¡@ + # *** new message + !F_QUEUEDELAY + :E Process queue every (minutes) + :T ¨C(¤ÀÄÁ)°õ¦æ¦î¦C¡@ + # *** new message + !T_FAXUSERS + :E List of fax users + :T ¶Ç¯u¥Î¤á¦Cªí¡@ + # *** new message + !I_FAXUSERS + :E You can enter here the list of privileged\n + +users. They may fax from remote locate to some\n + +phone zone. + :T §A¥i¥H¦b¦¹¿é¤J±M¥Î¥Î¤á¡@\n + +¥L­Ì¥i¥H¥Ñ»·µ{¦aÂI¶Ç¯u¡@\n + +¦Ü¬Y¨Ç¹q¸Ü°Ï°ì.¡@ + # *** new message + !F_FAXALIASE + :E Alias + :T §O¦W¡@ + # *** new message + !F_FAXALIASENAME + :E Full name + :T ¥þ¦W¡@ + # *** new message + !F_FAXPHONE + :E Phone number + :T ¹q¸Ü¸¹½X¡@ + # *** new message + !T_FAXALIAS + :E Fax alias + :T ¶Ç¯u§O¦W¡@ + # *** new message + !I_FAXALIAS + :E You define an email alias + :T §A©w¸q¤@¹q¶l§O¦W¡@ + # *** new message + !H_ALIASES + :E Alias\tName\tPhone\tRule + :T §O¦W¡@\t¦W¦r¡@\t¹q¸Ü¡@\t³W«h¡@ + # *** new message + !T_FAXALIASES + :E List of fax aliases + :T ¶Ç¯uªº¦Cªí¡@ + # *** new message + !F_FAXUSERID + :E User email address + :T ¥Î¤á¹q¶l¦a§}¡@ + # *** new message + !F_FAXUSERNAME + :E User name + :T ¥Î¤á¦WºÙ¡@ + # *** new message + !F_FAXUSERPGP + :E PGP public key (opt) + :T PGP ¤½¥ÎÆ_ (¿ï¶µ)¡@ + # *** new message + !T_FAXUSER + :E Fax user + :T ¶Ç¯u¥Î¤á¡@ + # *** new message + !I_FAXUSER + :E You define the minimal information to\nsetup a fax account for privilege user\n + :T §A¥i©w¸q³]©w¤@±M¥Î¥Î¤á¡@\nªº¶Ç¯u¥Î¤áªº³Ì¤p¸ê®Æ¡@ + # *** new message + !I_PRIVUSER + :E PGP optionnal + :T PGP ¿ï¶µ¡@ + # *** new message + !F_ACCESSLOCAL + :E Local email only + :T ¥u¦³¥»¾÷¹q¶l¡@ + # *** new message + !F_ACCESSANY + :E email from anywhere + :T ¥Ñ¥ô¦ó¦a¤è¨Óªº¹q¶l¡@ + # *** new message + !I_PRIVPGPUSER + :E required PGP signature + :T »Ý­n PGP ñ¦W¡@ + # *** new message + !F_ACCESSZONEUSERS + :E Only rule's users accepted + :T ¥u¦³³W«hªº¥Î¤á¤~¥i±µ¨ü¡@ + # *** new message + !F_ACCESSUSERS + :E All fax users accepted + :T ©Ò¦³¶Ç¯u¥Î¤á§¡¥i±µ¨ü¡@ + # *** new message + !H_FAXUSERS + :E Email\tName + :T ¹q¶l¡@\t¦W¦r¡@ + # *** new message + !F_RULE + :E Access rule + :T ¦s¨ú³W«h¡@ + # *** new message + !T_RULE + :E One access rule + :T ¤@¶µ¦s¨ú³W«h¡@ + # *** new message + !T_RULES + :E Fax rules + :T ¶Ç¯u³W«h¡@ + # *** new message + !I_RULES + :E You can specify access rules needed to setup\nvarious fax zones and fax aliases + :T §A¥i«ü©ú³]©w¤£¦P¶Ç¯u°Ï°ì¤Î¶Ç¯u§O¡@\nªº©Ò»Ýªº¦s¨ú³W«h¡@ + # *** new message + !M_FAXRULES + :E Fax access rules + :T ¶Ç¯u¦s¨ú³W«h¡@ + # *** new message + !F_RULEID + :E Rule id + :T ³W«hªº id¡@ + # *** new message + !I_RULE + :E You can define one access rule which will be\n + +used to limit access to zone and fax aliases + :T §A¥i©w¸q¤@¶µ¦s¨ú³W«h¡@\n + +¨Ó­­¨î¦s¨ú¦Ü°Ï°ì©M¶Ç¯u§O¦W¡@ + # *** new message + !F_ZONEID + :E Zone id + :T °Ï°ìªº id¡@ + # *** new message + !H_RULES + :E Rule ID\tAccess\tUser list + :T ³W«hªº ID¡@\t¦s¨ú¡@\t¥Î¤á¦Cªí¡@ + # *** new message + !M_ADDRULE + :E Select [Add] to define a new fax rule + :T ¿ï [·s¼W] ©w¸q¤@·s¶Ç¯u³W«h¡@ + # *** new message + !F_ACCESSCTL + :E Access control + :T ¦s¨ú±±¨î¡@ + # *** new message + !F_USERAUTH + :E User authentification + :T ¥Î¤áŲ»{¡@ + # *** new message + !T_SERVICES + :E 1-Services + :T 1-ªA°È¡@ + # *** new message + !M_MAILSYS + :E Mail system + :T ¹q¶l¨t²Î¡@ + # *** new message + !M_FAXSUBSYS + :E Mail to fax gateway + :T ¹q¶l¦Ü¶Ç¯u¹h¹D¡@ + # *** new message + !M_VDOMAINSUB + :E Virtual email domains + :T µêÀÀ¹q¶lºô°ì¡@ + # *** new message + !F_TRUST + :E Trusted users + :T ¥i«Hªº¥Î¤á¡@ + # *** new message + !F_USEGECOS + :E match full user name + :T ªþ¦X§¹¾ãªº¥Î¤á¦WºÙ¡@ + # *** new message + !M_SENDMAILSPEC + :E Sendmail specific files + :T Sendmail ¯S§OÀɮס@ + # *** new message + !I_UPDSENDMAILCF + :E Generating %s\n + :T ²£¥Í %s¡@\n + # *** new message + !Q_NOTBYME + :E The file %s was not generated by Linuxconf.\n + +It was either never generated by Linuxconf\n + +or has been modified manually later.\n + +\n + +Linuxconf will overwrite it and produce a backup file\n + +named %s.\n + +\n + +\tOk ? + :T ÀÉ®× %s ¤£¬O¥Ñ Linuxconf ²£¥Íªº.¡@\n + +¥¦±q¨Ó¥¼¥Ñ Linuxconf ²£¥Í¡@\n + +©Î¥i¯à¬Oµy«á§ó§ïªº¡@\n + +\n + +Linuxconf ±N·|Âмg¥¦µM«á³y¥X¤@¡@\n + +¦W¬° %s ªº³Æ¥÷ÀÉ¡@\n + +\n + +\t½T©w?¡@ + # *** new message + !T_NOTBYME + :E Attention + :T ĵ§i¡@ + # *** new message + !I_USERSAYNO + :E Not done as confirmed by the admin\n + :T ºÞ²z­û½T©w¤£°µ¡@ + # *** new message + !M_SPAMDENY + :E Rejected senders + :T ©Úµ´ªºµo°e¤H¡@ + # *** new message + !M_SPAMIPALLOW + :E 'Relay for' by IP + :T ¥Ñ IP 'Relay for'¡@ + # *** new message + !M_SPAMNAMEALLOW + :E 'Relay for' by name + :T ¥Ñ ¦WºÙ 'Relay for'¡@ + # *** new message + !M_RELAYALLOW + :E Relay to hosts + :T Relay ¦Ü¥D¾÷¡@ + # *** new message + !T_SPAMRULES + :E Anti-spam filters + :T Anti-spam ¹LÂo¾¹¡@ + # *** new message + !I_ADDENTRY + :E Select [Add] to add a new entry + :T ¿ï [·s¼W] ·s¼W¤@¶µ¥Ø¡@ + # *** new message + !F_EMAILORIGIN + :E Email origin + :T ¹q¶l¨Ó·½¡@ + # *** new message + !F_ERRMSG + :E Error message + :T ¿ù»~°T®§¡@ + # *** new message + !T_DENYSPAM + :E Rejected message + :T ©Úµ´ªº°T®§¡@ + # *** new message + !I_DENYSPAM + :E You enter the sender address you want\n + +to filter out.\n + +You may enter a complete email address,\n + +a domain, a host name or a network address + :T §A¥i¿é¤J¨º¤@µo°e¤H¹q¶l»Ý­n¡@\n + +³Q¹LÂo.¡@\n + +§A¥i¥H¿é¤J¤@§¹¾ã¹q¶l¦a§},¤@ºô°ì,¡@\n + +¤@¥D¾÷¦W©Îºô¸ô¦a§}¡@ + # *** new message + !T_RELAY + :E May relay mail to + :T ¥iÂà°e¹q¶l¦Ü¡@ + # *** new message + !I_RELAY + :E Enter the list of host or network\nto which you intend to relay mail + :T ¿é¤J§A·Ç³ÆÂà°e¹q¶l¡@\nªº¥D¾÷©Îºô¸ô¦Cªí¡@ + # *** new message + !H_NAMEORNET + :E Name or network address + :T ¦WºÙ©Îºô¸ô¦a§}¡@ + # *** new message + !T_REJECTFROM + :E Mail rejected from + :T ¥Ñ³oùةڵ´ªº¹q¶l:¡@ + # *** new message + !I_REJECTFROM + :E Any mail received from one of the following persons\n + +or domains will be dropped\n + :T ¥ô¦ó¥Ñ¥H¤Uªº¤H¥K©Îºô°ìÂà¨Ó¡@\n + +ªº¹q¶l§¡·|±Æ°£¡@\n + # *** new message + !H_REJECTFROM + :E Sender\tMessage + :T µo°e¤H¡@\t°T®§¡@ + # *** new message + !T_ALLOW + :E May relay mail for + :T ¥iµ¹³o¦ì¶Ç°e¹q¶l:¡@ + # *** new message + !I_IPALLOW + :E This is the list of hosts or networks which\n + +are allowed to use your server as a mail relay\n + +You must enter either complete IP numbers\n + +for host, or partial IP for networks + :T ³o¦Cªí¬O¥i¥H¨Ï¥Î§Aªº¦øªA¾¹§@¬°¡@\n + +¹q¶l¶Ç°eªº¥D¾÷©Îºô¸ô¡@\n + +§A¥²»Ý¿é¤J§¹¾ãªº¥D¾÷ IP ¦a§}¡@\n + +©Îºô¸ôªº³¡¥÷ IP ¦a§}¡@ + # *** new message + !I_HOSTIPORNET + :E Host IP or network + :T ¥D¾÷ IP ©Îºô¸ô¡@ + # *** new message + !I_NAMEALLOW + :E This is the list of hosts or domains which\n + +are allowed to use your server as a mail relay + :T ³o¦Cªí¬O¥i¥H¨Ï¥Î§Aªº¦øªA¾¹§@¬°¡@\n + +¹q¶l¶Ç°eªº¥D¾÷©Îºô°ì¡@\n + # *** new message + !H_HOSTORDOMAIN + :E Host or domain name + :T ¥D¾÷©Îºô°ì¦WºÙ¡@ + # *** new message + !T_BASECONF + :E Basic + :T °ò¥»¡@ + # *** new message + !M_SUBRELAYCTRL + :E Mail relay controls + :T ¹q¶l¶Ç°e±±¨î¡@ + # *** new message + !M_SUBSPAMMERS + :E List of well known spammers + :T µÛ¦Wªº spammers ¦Cªí¡@ + # *** new message + !F_SPAMENABLE + :E Enable relay control (spammers) + :T ±Ò°Ê¶Ç°e±±¨î (spammers)¡@ + # *** new message + !E_MAINCONFIG + :E main email configuration + :T ¥D­n¹q¶l³]©w¡@ + # *** new message + !E_MAILCONFLICT + :E Conflicting mail configuration:\n + +Domain/Host name %s can't be managed both\n + +by %s\n + +and %s + :T ¹q¶l³]©w½Ä¬ð:¡@\n + +ºô°ì/¥D¾÷¦W %s ¤£¥i¦P®É¡@\n + +¥Ñ %s¡@\n + +¤Î %s ºÞ²z¡@ + # *** new message + !E_IMPLICITCONFIG + :E implicit linuxconf rule + :T Áô§tªº linuxconf ³W«h¡@ + # *** new message + !E_MAINALIASES + :E aliases for your system + :T §Aªº¨t²Î§O¦W¡@ + # *** new message + !F_ESMTPREM + :E Expensive esmtp (on demand links) + # *** new message + !T_MALIAS + :E Mail aliases + :T ¹q¶l§O¦W¡@ + # *** new message + !F_MALIAS + :E Email alias + :T ¹q¶l§O¦W¡@ + # *** new message + !E_NOVIRTALIAS + :E no fully qualified aliase for virtual domains + :T µêÀÀºô°ì¨S¦³§¹¾ã­­©w§O¦W¡@ + # *** new message + !T_IPALLOWTHIS + :E Allow this host/domain to use your server(IP) + :T ·Ç³\\³o¥D¾÷/ºô°ì ¨Ï¥Î³o¦øªA¾¹ (IP)¡@ + # *** new message + !T_ALLOWTHIS + :E Allow this host/domain to use your server + :T ·Ç³\\³o¥D¾÷/ºô°ì ¨Ï¥Î³o¦øªA¾¹¡@ + # *** new message + !T_RELAYTHIS + :E Relay to this host/network + :T ¶Ç°e¦Ü³o¥D¾÷/ºô¸ô¡@ + # *** new message + !M_mailconf + :E Mail delivery system (sendmail) + :T ¶l¥ó¶Ç°e¨t²Î (sendmail)¡@ + # *** new message + !M_VPOP + :E Virtual POP accounts (mail only) + :T µêÀÀ POP ±b¸¹ (¥u­­¶l¥ó)¡@ + # *** new message + !M_VPOLICIES + :E Policies for virtual domains + :T µêÀÀºô°ìªº­ì«h¡@ + # *** new message + !H_VDOMAINS + :E Virtual email domains + :T µêÀÀ¹q¶lºô°ì¡@ + # *** new message + !F_USESMRSH + :E Use special shell smrsh + :T ¨Ï¥Î¯S§O shell smrsh¡@ + # *** new message + !E_NOSMRSH + :E The smrsh shell is not installed\n + +on this system.\n + +Generating a sendmail.cf using /bin/sh + :T ³o smrsh shell ¥¼¦³¦b³o¨t²Î¡@\n + +¦w¸Ë.¡@\n + +¨Ï¥Î /bin/sh ²£¥Í¤@ sendmail.cf¡@ + # *** new message + !T_MISC + :E Misc. + :T Âø¶µ¡@ + # *** new message + !T_DOMALIASES + :E Aliases + :T §O¦W¡@ + # *** new message + !F_UUCPMAXSIZE + :E Max size of uucp messages + :T uucp °T®§ªº³Ì¤j¼Æ¶q¡@ + # *** new message + !T_MVIRTUAL + :E email + :T ¹q¶l¡@ + # *** new message + !E_VHOSTEXIST + :E Virtual email domain %s\nis already configured + :T µêÀÀ¹q¶lºô°ì %s¡@\n¤w³]©w¦n¡@ + # *** new message + !F_NEEDED + :E Virtual email domain needed + :T »Ý­nµêÀÀ¹q¶lºô°ì¡@ + # *** new message + !E_MISSING + :E Mailconf: Virtual email domain %s is not configured\n + :T Mailconf: µêÀÀ¹q¶lºô°ì %s ÁÙ¥¼³]©w¡@\n + # *** new message + !E_DOMEXIST + :E Mailconf: Virtual email domain %s already configured\n + :T Mailconf: µêÀÀ¹q¶lºô°ì %s ¤w³]©w¡@\n + # *** new message + !E_IVLDOPT + :E Invalid option %s\n + :T µL®Ä¿ï¶µ %s¡@\n + # *** new message + !I_USAGE + :E Module mailconf\n + +\n + + --help\n + + --addvdom domain [--startuid uid ] [--daliases domain_alias ]\n + + [--faliase email_aliase_file] [ --quota max_inbox_k] \n + + --delvdom domain\n + # *** new message + !F_REDIR + :E Redirect messages to + :T Âà°e°T®§¦Ü¡@ + # *** new message + !E_IVLDCHAR + :E Invalid character in aliase + :T µL®Äªº§O¦W¦r²Å¡@ + # *** new message + !F_QUOTA + :E Limit user inbox to (k) + :T ­­¨î¥Î¤áªº inbox ¤j¤p (k)¡@ + # *** new message + !H_MALIASES + :E Aliases + :T §O¦W¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/main.dic linuxconf-1.15/messages/bg5/main.dic *** linuxconf-1.14r4/messages/bg5/main.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/main.dic Tue Apr 13 04:15:08 1999 *************** *** 0 **** --- 1,423 ---- + @version 0 + # *** new message + !MNU_BOOT + :E boot mode + :T ±Ò°Ê¼Ò¦¡¡@ + # *** new message + !MNU_LOGS + :E logs + :T °O¿ý¡@ + # *** new message + !MNU_FILESYS + :E File systems + :T Àɮרt²Î¡@ + # *** new message + !MNU_GRAPH + :E Graphic mode (X) + :T µøµ¡¼Ò¦¡ (X)¡@ + # *** new message + !MNU_NET + :E Networking + :T ºô¸ô¡@ + # *** new message + !MNU_USERS + :E Users accounts + :T ¥Î¤á°O¿ý¡@ + # *** new message + !MNU_CONFIGS + :E Configure all configuration files + :T ¾ã²z©Ò¦³³]©wÀɮס@ + # *** new message + !MNU_DATE + :E date & time + :T ¤é´Á¤Î®É¶¡¡@ + # *** new message + !TITLE + :E Linuxconf + # *** new message + !MNU_INTRO + :E This is the main entry to Linux configuration.\n + +\n + +Use the TAB key to navigate between the field\n + +section and the button bar at the bottom.\n + +Check out the help for this screen. It is an\n + +introduction to Linuxconf + :T ³oùجOLinux°t¸m³]©wªº¥D¤J¤f¡@\n + +\n + +½Ð¥ÎTABÁä±±¨î´å¼Ð©¹¨ÓÄæ¦ì¡@\n + +¤Î©³³¡ªº«ö¶s¦C¡@\n + +½Ð¦h§Q¥Î¥»­¶ªº»¡©úÀÉ. ¥¦¤]¡@\n + +¦³¤¶²Ð Linuxconf¡@\n + # *** new message + !ERR_BOOT + :E Askrunlevel is only used\nat boot time\n + :T ±Ò°Ê Askrunlevel ¥u¾A¥Î©ó¡@\n¨t²Î±Ò°Ê¡@\n + # *** new message + !ERR_NAME + :E This program can't be renamed.\nIt is normally named linuxconf.\n + :T µ{¦¡¦WºÙ¤£¯à§ó§ï¡@\nµ{¦¡³q±`ºÙ¬° linuxconf¡@\n + # *** new message + !MNU_COMMANDS + :E Configure all commands and daemons + :T ³]©w©Ò¦³©R¥O¤ÎªA°È(daemons)¡@ + # *** new message + !E_DEMOINIT + :E can't chroot(\"/demo_linuxconf\" (%m) + :T ¤£¥i chroot(\"/demo_linuxconf\"(%m)¡@ + # *** new message + !M_RUNLEVEL + :E init Run Level + :T °_°Ê Run Level¡@ + # *** new message + !M_REBOOT + :E Shutdown/Reboot + :T Ãö¾÷/­«·s±Ò°Ê¡@ + # *** new message + !M_UPDATE + :E Activate configuration + :T ±Ò°Ê³]©w¡@ + # *** new message + !T_CONTROL + :E Control panel + :T ±±¨î¥x¡@ + # *** new message + !I_CONTROL + :E This menu lets you do things, not configure. + :T ³oµæ³æ¤£¥i°µ³]©w¤u§@¡@ + # *** new message + !Q_SYSTASK + :E to perform system task + :T °õ¦æ¨t²Î¤u§@¡@ + # *** new message + !MNU_CONTROL + :E Control panel + :T ±±¨î¥x¡@ + # *** new message + !N_NOJOB + :E Nothing to do! + :T ¨S¨Æ¥i°µ!¡@ + # *** new message + !F_REBOOT + :E Reboot + :T ­«·s±Ò°Ê¡@ + # *** new message + !F_HALT + :E Shutdown & halt + :T Ãö¾÷¤Î°±¾÷¡@ + # *** new message + !F_DELAI + :E Delay before shutdown(minutes) + :T Ãö¾÷«eªº©µ¿ð(¤ÀÄÁ)¡@ + # *** new message + !F_MESSAGE + :E Message + :T °T®§¡@ + # *** new message + !T_SHUTDOWN + :E Shutdown control panel + :T Ãö¾÷±±¨î¥x¡@ + # *** new message + !I_SHUTDOWN + :E You can force a reboot or a final shutdown\nof this computer + :T §A¥i¥H¦b³o¹q¸£¶i¦æ±j¨î­«·s±Ò©Î¡@\nÃö¾÷¡@ + # *** new message + !MNU_MODULE + :E Configure Linuxconf modules + :T Linuxconf ¼Ò²Õ³]©w¡@ + # *** new message + !M_NETLEVEL + :E Switch network runlevel + :T Âà´«ºô¸ô runlevel¡@ + # *** new message + !M_RESTART + :E Restart linuxconf + :T ¦A±Ò°Ê linuxconf¡@ + # *** new message + !T_PRIVSHUTDOWN + :E May shutdown + :T ¥i¥HÃö¾÷¡@ + # *** new message + !T_PSYSCONTROL + :E 0-General system control + :T 0-¤@¯ë¨t²Î±±¨î¡@ + # *** new message + !P_ACTIVATECHG + :E enable configuration changes + :T ±Ò°Ê³]©wÂàÅÜ¡@ + # *** new message + !P_SHUTDOWN + :E shutdown the computer + :T ¹q¸£Ãö¾÷¡@ + # *** new message + !P_NETLEVEL + :E switch network operation level + :T Âà´«ºôµ¸¹B§@¯Å§O¡@ + # *** new message + !T_PACTCHG + :E May activate config changes + :T ¥i¥H°_°Ê³]©wÂàÅÜ¡@ + # *** new message + !T_PNETLEVEL + :E May switch network mode + :T ¥i¥HÂà´«ºô¸ô¼Ò¦¡¡@ + # *** new message + !T_PVIEWLOGS + :E May view system logs + :T ¥i¥HÀ˵ø¨t²Î°O¿ý¡@ + # *** new message + !F_HTMLTIMEOUT + :E Html timeout + :T Html ¹O®É¡@ + # *** new message + !T_FEATURES + :E Features + :T Features ¥\\¯à¡@ + # *** new message + !I_FEATURES + :E This screen defines some special behavior\nof linuxconf. + :T ³oµe­±©w¸q¤@¨Ç linuxconf ªº¡@\n¯S§O©Ê¯à¡@ + # *** new message + !E_HTMLTIMEOUT + :E The html timeout must be 5 minutes or higher + :T Html ¹O®É®É­­¤@©w­n5¤ÀÄÁ©Î¥H¤W¡@ + # *** new message + !P_VIEWLOGS + :E view system logs + :T À˵ø¨t²Î°O¿ý¡@ + # *** new message + !M_BOOTLOGS + :E Boot messages + :T ±Ò°Ê°T®§¡@ + # *** new message + !M_LINUXCONFLOGS + :E Linuxconf logs + :T Linuxconf °O¿ý¡@ + # *** new message + !T_SYSLOGS + :E System logs + :T ¨t²Î°O¿ý¡@ + # *** new message + !I_SYSLOGS + :E This menu lets you see the different messages generated\n + +by the system. These messages are normally checked to\n + +either detect some problems or as a proof that some event\n + +happeneded. + :T ³oµæ³æ¥i¥HÅý§AÀ˵ø¨t²Î²£¥Í¤§¤£¦P°T®§¡@\n³o¨Ç°T®§¥i¥H¤Ï¬M¨t²Î¡@\n + +¬Y¨Ç°ÝÃD©ÎÃÒ©ú¬Y¨Ç¤u§@¤§¹B¦æ¡@\n + # *** new message + !M_FEATURES + :E Features + :T Feature ¥\\¯à¡@ + # *** new message + !I_HTMLINTRO + :E \n + +This is the main entry to Linux configuration.\n + +Check out the help for this screen. It is an\n + +introduction to Linuxconf\n + :T \n + +³oùجO Linux °t¸m³]©wªº¥D¤J¤f¡@\n + +\n + +½Ð¥Î TAB Áä±±¨î´å¼Ð©¹¨ÓÄæ¦ì¡@\n + +¤Î©³³¡ªº«ö¶s¦C¡@\n + +½Ð¦h§Q¥Î¥»­¶ªº»¡©úÀÉ.¥¦¤]¤¶²Ð Linuxconf¡@\n + # *** new message + !E_HTTP + :E --http and --demo may only be used by root + :T --http ¤Î --demo ¥u¾A¥Î©ó root ¥Î¤á¡@ + # *** new message + !MNU_ADD_ON + :E Override Linuxconf addons + :T ¸m´« Linuxconf addons¡@ + # *** new message + !MNU_CTRLFILE + :E Control files and systems + :T ±±¨îÀɮפΨt²Î¡@¡@ + # *** new message + !T_CTRLFILE + :E Linuxconf management + :T Linuxconf ºÞ²z¡@ + # *** new message + !I_CTRLFILE + :E This menu lets you manage Linuxconf's\nbehavior\n + :T ³oµæ³æ¥i¥HÅý§AºÞ²z Linuxconf ¤§¡@\n©Ê¯à¡@\n + # *** new message + !MNU_ADD_ON_ORIG + :E Create Linuxconf addons + :T «Ø¥ß Linuxconf addons¡@ + # *** new message + !F_KBDMAP + :E Keyboard map + :T Áä½L¹ïÀ³¡@ + # *** new message + !F_NONE + :E Use default keymap + :T ¨Ï¥Î¤º©wÁä½L¹ïÀ³¡@ + # *** new message + !T_CHGKMAP + :E Changing keyboard map + :T ÂàÅÜÁä½L¹ïÀ³¡@ + # *** new message + !I_CHGMAP + :E You have changed the keyboard mapping specification.\n + +Do you want to activate the change now ?\n + +It will be activated at each reboot + :T §A¤w§ó§ïÁä½L¹ïÀ³¯S©Ê¡@\n + +¬O§_¥ß§Y°_°Ê§ïÅÜ?¡@\n + +¨C¦¸­«·s¶}¾÷¤]¥i°_°Ê§ïÅÜ¡@ + # *** new message + !M_SERVICE + :E Control service activity + :T ±±¨îªA°È¬¡°Ê¡@ + # *** new message + !Q_SERVICE + :E to enable/disable some services + :T ±Ò°Ê/¤£±Ò°Ê ¤@¨ÇªA°È¡@ + # *** new message + !M_TASKS + :E Configure superuser scheduled tasks + :T ³]©w¶W¯Å¥Î¤á±Æµ{¤u§@¡@ + # *** new message + !M_CONFIG + :E Config + :T ³]©w¡@ + # *** new message + !M_CONTROL + :E Control + :T ±±¨î¡@ + # *** new message + !E_VDB + :E --vdb may only be used by root\n + :T --vdb ¥u¥i¥Î©ó root ¥Î¤á¡@ + # *** new message + !MNU_PERMS + :E Configure file permission and ownership + :T ³]©wÀÉ®×Åv­­¤Î¾Ö¦³¤H¡@ + # *** new message + !F_LANGAGE + :E Language + :T »y¨¥¡@ + # *** new message + !E_SETKEYMAP + :E --setkeymap may only be used by root\n + :T --setkeymap ¥u¥i¥Î©ó root ¥Î¤á\n¡@ + # *** new message + !F_USEGUI + :E May use the GUI mode + :T ¥i¨Ï¥Î GUI ¼Ò¦¡¡@ + # *** new message + !P_ARCHIVE + :E archive config files + :T ³]©wÀÉÂkÀÉ¡@ + # *** new message + !M_CONFVER + :E Configure system profiles + :T ³]©w¨t²Î³]©wÀÉ¡@ + # *** new message + !M_ARCHIVE + :E Archive configurations + :T ³]©wÂkÀÉ¡@ + # *** new message + !M_CFGVERSION + :E Switch system profile + :T Âà´«¨t²Î³]©wÀÉ¡@ + # *** new message + !P_EXTRACT + :E extract config files + :T ©â¨ú³]©wÀÉ¡@ + # *** new message + !P_SUMCONF + :E sum config files + :T ¾ã¦X³]©wÀÉ¡@ + # *** new message + !P_DIFF + :E view config changes + :T À˵ø³]©w§ó§ï¡@ + # *** new message + !P_HISTORY + :E view config history + :T À˵ø³]©w°O¿ý¡@ + # *** new message + !F_USECOLORS + :E May use the colors in text mode + :T ¤å¥»¼Ò¦¡¥i¥H¨Ï¥Î±m¦â¡@ + # *** new message + !F_HTMLBODYPARM + :E Html body parameters + :T Html ¤º¤å°Ñ¼Æ¡@ + # *** new message + !P_HINT + :E obtain configuration hints + :T Àò¨ú³]©w´£¥Ü¡@ + # *** new message + !I_LANGMODE + :E Automatic language selection + :T ¦Û°Ê»y¨¥¿ï¾Ü¡@ + # *** new message + !I_CONTROLDEMO + :E This menu lets you do things, not configure\n + +\n + +.*** Not operational in DEMO mode *** + :T ³oµæ³æ¤£¥i¥H§@³]©w¡@\n + +\n + +.*** ¤£¾A¥Î©ó DEMO ¥Ü½d¼Ò¦¡ *** + # *** new message + !E_SETMOD + :E --setmod and --unsetmod may only be done by root\n + :T --setmod ¤Î --unsetmod ¥u¥i¥Î©ó root ¥Î¤á¡@\n + # *** new message + !N_BUILDTREE + :E Linuxconf will now compute its menu tree.\n + +This may take a few seconds.\n + +Linuxconf does this either because you have upgraded linuxconf\n + +itself or because you have installed a new module. + :T Linuxconf ²{¦b¶}©l¾ã²zµæ³æ¾ð¡@\n + +¤j¬ù»Ý­n¼Æ¬íÄÁ¡@\n + +³o¨BÆJ¬O¥Ñ©ó§A¤w§ó·s linuxconf¡@\n + +©Î§A¤w·s¼W¼Ò²Õ¡@ + # *** new message + !F_PREFIXTRIG + :E Trigger for filter + :T °_°Ê¹LÂo¾¹¡@ + # *** new message + !M_MOUNTFS + :E Mount/Unmount file systems + :T ¸Ë¸ü Mount/¨ø¤U UnmountÀɮרt²Î¡@ + # *** new message + !E_NOMISCSERV + :E No misc services registered + :T Âø¶µªA°È¨S¦³µn°O¡@ + # *** new message + !T_MISCSERV + :E Miscellaneous services + :T Âø¶µªA°È¡@ + # *** new message + !MNU_MISCSERV + :E Miscellaneous services + :T Âø¶µªA°È¡@ + # *** new message + !I_USAGE + :E linuxconf main command line options\n + + --archive [ sub-systems ... ]\n + + --demo\n + + --diff [ sub-systems ... ]\n + + --extract [ sub-systems ... ]\n + + --history [ sub-systems ... ]\n + + --hint service key\n + + --gui\n + + --guiproto\n + + --help\n + + --helpfile\n + + --http\n + + --md5sum [ sub-systems ... ]\n + + --modulemain modulename [ args ... ]\n + + --setkeymap keymapfile\n + + --setmod modulename_or_path\n + + --shutdown\n + + --status\n + + --text [--mono]\n + + --unsetmod modulename_or_path\n + + --update\n + + --vdb ...\n + # *** new message + !I_CMDLINE + :E Command line usage diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/misc.dic linuxconf-1.15/messages/bg5/misc.dic *** linuxconf-1.14r4/messages/bg5/misc.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/misc.dic Tue Apr 13 04:15:09 1999 *************** *** 0 **** --- 1,342 ---- + @version 0 + # *** new message + !E_SETOWNER + :E Can't set ownership of file\n%s\n\nUser %s does not exist\n + :T ¤£¯à³]©wÀɮס@\n%sªº¾Ö¦³¤H¡@\n\n¥Î¤á %s ¤£¦s¦b¡@\n + # *** new message + !E_SETGROUP + :E Can't set group ownership of file\n%s\n\nGroup %s does not exist\n + :T ¤£¯à³]©wÀɮס@\n%sªº¸s²Õ¾Ö¦³Åv¡@\n\n¸s²Õ %s ¤£¦s¦b¡@\n + # *** new message + !F_CORRPATH + :E Correct path + :T ¥¿½T¸ô®|¡@ + # *** new message + !T_MODCONFPATH + :E Modifying a config file path + :T §ó§ï¤@³]©wÀɪº¸ô®|¡@ + # *** new message + !I_MODCONFPATH + :E You can redefined the path of a\n + +configuration file. If you do so\n + +Linuxconf will use the new path from now on.\n + +\n + +Be advise that other utilities are on there\n + +own and may forget to notice. Unless you\n + +really knows what you are doing, don't play\n + +here.\n + :T §A¥i¥H­«·s©w¸q¤@³]©wÀÉ¡@\n + +ªº¸ô®|. ¦pªG§A³o¼Ë°µ,¡@\n + +Linuxconf ±N·|¥Ñ²{¦b°_¨Ï¥Î·s¸ô®|.¡@\n + +\n + +½Ð¯d·N§A¥i¯à§Ñ°O¨ä¥¦¤u¨ãªº¡@\n + +¦s¦b,³o¶µ§ïÅÜ·|¹ï¥¦­Ì¦³­«¤j¡@\n + +¼vÅT. °£«D§A¯uªºª¾¹D§A¥¿¦b¡@\n + +¶i¦æ¤u§@,½Ð¤Å¦b¦¹§ï°Ê¡@\n + # *** new message + !T_LISTCONF + :E List of configuration files + :T ³]©wÀɪº¦Cªí¡@ + # *** new message + !I_LISTCONF + :E This is the list of all file managed\n + +by linuxconf. For each file, you can access\n + +directly a help file describing its purpose.\n + +The letters preceding the file name indicate\n + +how this file is managed by Linuxconf. Press help\n + +for more info + :T ³o¬O©Ò¦³¥Ñ linuxconf ºÞ²zªºÀɮס@\n + +¦Cªí. ¹ï¨C¤@ÀÉ®×, §A¥i¥Hª½±µ¡@\n + +¦s¨ú¥¦ªº»¡©úÀÉ¥H¤F¸Ñ¥¦ªº¤u¥Î.¡@\n + +¦bÀɮצWºÙ«eªº¦r¥Àªí¥Ü¡@\n + +³o¨ÇÀɮ׬O«ç¼Ë¥Ñ Linuxconf ºÞ²z.¡@\n + +½Ð«ö »¡©ú ¥HÀò¨ú§ó¦h¸ê®Æ¡@ + # *** new message + !P_MODCONF + :E modify a configuration file path + :T ­×§ï¤@­Ó³]©wÀɪº¸ô®|¡@ + # *** new message + !P_COPYSYSFILES + :E to copy system files + :T «þ¨©¨t²ÎÀÉ¡@ + # *** new message + !E_CANTDO + :E Can't %s file %s\n%s + :T ¤£¯à %s ÀÉ %s¡@\n%s + # *** new message + !E_WRITE + :E write + :T ¼g¤J¡@ + # *** new message + !E_READ + :E read + :T Ū¨ú¡@ + # *** new message + !E_UPDATE + :E Update %s + :T §ó·s %s¡@ + # *** new message + !E_OUTOFMEM + :E Out of memory\n + :T °O¾Ð¤£¨¬¡@\n + # *** new message + !T_QUIT + :E Quit without saving ? + :T ÁÙ¥¼Àx¦sÂ÷¶} ?¡@ + # *** new message + !I_QUIT + :E You have modified the information somewhat\nAre you sure you want to quit ?\n + :T §A¤w§ó§ï¤F¤@¨Ç¸ê®Æ¡@\n§A¬O§_¯uªºÂ÷¶}?¡@\n + # *** new message + !T_ERROR + :E Error + :T ¿ù»~¡@ + # *** new message + !I_ICONERROR + :E Error + :T ¿ù»~¡@ + # *** new message + !T_PLEASE + :E Please note + :T ½Ðª`·N¡@ + # *** new message + !I_ICONNOTICE + :E Notice + :T ³qª¾¡@ + # *** new message + !T_AREYOUSURE + :E Are you sure ? + :T ¬O§_ªÖ©w?¡@ + # *** new message + !I_DELRECORD + :E Are you sure you want to delete this record ? + :T §A¬O§_ªÖ©w§A¯uªº§R°£³o°O¿ý?¡@ + # *** new message + !F_MODPATH + :E Module path + :T ¼Ò²Õ¸ô®|¡@ + # *** new message + !F_MODACTIVE + :E This module is active + :T ³o¼Ò²Õ¬O¬¡°Ê¤¤¡@ + # *** new message + !I_EMPTYSLOT + :E Select [Add] to add one empty slot in the dialog + :T ¿ï [·s¼W] ¦b¹ï¸Ü²°¤¤·s¼W¤@ªÅ¥Õ¼Ñ¡@ + # *** new message + !T_MODLIST + :E List of modules + :T ¼Ò²Õ¦Cªí¡@ + # *** new message + !I_MODLIST + :E You can add Linuxconf's module here.\n + +The modules are loaded each time linuxconf is used\n + +and enhance its functionnality. + :T §A¥i¥H¦b³oùØ·s¼W Linuxconf ªº¼Ò²Õ.¡@\n + +¨C¦¸ linuxconf °_°Ê®É§¡·|¸ü¤J¡@\n + +¤Î¥[¤J³o¼Ò²Õªº¥\\¯à.¡@ + # *** new message + !E_MODNOPATH + :E Module %s does not exist\n + :T ¼Ò²Õ %s ¤£¦s¦b¡@\n + # *** new message + !E_LOADMOD + :E Can't load module\n\t%s\n%s + :T ¤£¯à¸ü¤J¼Ò²Õ¡@\n\t%s\n%s + # *** new message + !E_COMPATMOD + :E Incompatible module %s\nget a new one or recompile it + :T ¤£¦X°tªº¼Ò²Õ %s¡@\n½Ð¨ú¤@·sªº¤Î­«·s½sĶ¡@ + # *** new message + !H_CONFIGP + :E Path\tStatus\tSubsys + :T ¸ô®|¡@\tª¬ºA¡@\tSubsys¡@ + # *** new message + !L_ARCHIVING + :E Archiving %s, version %s\n + :T ÂkÀÉ %s, ª©¥» %s¡@\n + # *** new message + !M_SUBBASE + :E Base/Station specific + :T ¥u­­ °ò¥»/¯¸¡@ + # *** new message + !M_NETCLIENT + :E Network connectivity + :T ºô¸ô³s½u¡@ + # *** new message + !L_UNARCHIVING + :E Un-Archiving %s, version %s\n + :T ¤£ÂkÀÉ %s, ª©¥» %s¡@\n + # *** new message + !I_ERASING + :E File did not exist, erasing %s\n + :T Àɮפ£¦s¦b, §R°£ %s¡@\n + # *** new message + !F_CONFVERMODE + :E Operation mode + :T ¤u§@¼Ò¦¡¡@ + # *** new message + !I_AUTO + :E Automatic + :T ¦Û°Ê¡@ + # *** new message + !T_CONFIGS + :E Configurations + :T ³]©w¡@ + # *** new message + !I_ADDVER + :E Select [Add] to create a new configuration tree + :T ¿ï [·s¼W] «Ø¥ß¤@·sªº³]©w¾ð¡@ + # *** new message + !I_CONFVER + :E You can save/archive all the configuration of this station\n + +keep multiple versions around and switch at will\n + +between them + :T §A¥i¥H Àx¦s/ÂkÀÉ ©Ò¦³³o²×ºÝ¯¸ªº³]©w¡@\n + +¥i¥H«O¦s¤£¦Pª©¥»¤Î¦b¥¦­Ì¤¤¿ï¾Ü¡@\n + # *** new message + !T_CONFVER + :E Configuration versioning + :T ³]©wª©¥»¡@ + # *** new message + !T_NEWCONF + :E New configuration name + :T ·sªº³]©w¦WºÙ¡@ + # *** new message + !E_CONFEXIST + :E This configuration name already exist\npick another one + :T ³o³]©w¦WºÙ¤w¦s¦b¡@\n½Ð¿ï¨ä¥¦¡@ + # *** new message + !T_ONECONF + :E Configuration %s + :T ³]©w %s¡@ + # *** new message + !I_ONECONF + :E You must associate each subsystem with\n + +a configuration family. If you leave one field blank\n + +this subsystem won't be archived + :T §A¥²»Ý¬°¨C¤@¤l¨t²Î³sô¡@\n + +¤@³]©w¨t¦C. ¦p¦³¨ä¤¤¤@Äæ¬OªÅ¥Õ¡@\n + +³o¤l¨t²Î¤£·|ÂkÀÉ¡@ + # *** new message + !T_OFFICE + :E Office + :T ¿ì¤½«Ç¡@ + # *** new message + !T_HOME + :E Home + :T ®a®x¡@ + # *** new message + !T_HOMEOFFICE + :E Home-Office + :T ®a®x¿ì¤½«Ç¡@ + # *** new message + !M_HARDWARE + :E Hardware setup + :T µw¥ó³]©w¡@ + # *** new message + !F_TITLE + :E Title/comment + :T ¼ÐÃD/³Æµù¡@ + # *** new message + !T_PICKVER + :E Pick a version + :T ½Ð¿ï¤@ª©¥»¡@ + # *** new message + !I_PICKVER + :E Pick a new version to activate.\n + +All configuration files of the current version\n + +will be archived and replaced by configuration files\n + +of the new version. + :T ¿ï¤@·sª©¥»°_°Ê.¡@\n + +©Ò¦³¥Ø«eª©¥»ªº³]©wÀɱN¡@\n + +·|ÂkÀÉ©M¥Ñ·sª©ªº³]©wÀÉ¡@\n + +¥N´À¡@ + # *** new message + !I_ARCHCONF + :E Archiving %s\n + :T ÂkÀÉ %s¡@\n + # *** new message + !I_EXTRCONF + :E Extracting %s\n + :T ©â¨ú %s¡@\n + # *** new message + !I_KEEPINGOLD + :E File %s was never archived, keeping current copy\n + :T ÀÉ®× %s ±q¥¼ÂkÀÉ, «O¦s¥Ø«e«þ¨©¡@\n + # *** new message + !E_CFGVIRTUAL + :E You can't edit a virtual config file + :T §A¤£¯à½s¿è¤@µêÀÀ³]©wÀÉ¡@ + # *** new message + !M_STATIONID + :E Station identity + :T ²×ºÝ¯¸¼Ð°O¡@ + # *** new message + !M_NETACCESS + :E Network access + :T ºô¸ô¦s¨ú¡@ + # *** new message + !M_PROFILEDEF + :E System profile definitions + :T ¨t²Î·§ªp©w¸q¡@ + # *** new message + !E_ARCHFAILED + :E Archiving failed\nAborting extraction of the selected profile + :T ÂkÀÉ¥¢±Ñ¡@\n¨ú®ø©â¨ú¤w¿ïªº profile¡@ + # *** new message + !F_DEFFAM + :E Default archiving family + :T ¹w³]ªºÂkÀɨt¦C¡@ + # *** new message + !T_HOMECONFIG + :E Home configuration + :T ®a®x³]©w¡@ + # *** new message + !T_OFFICECONFIG + :E Office configuration + :T ¿ì¤½«Ç³]©w¡@ + # *** new message + !T_SUBSYS + :E Archiving families + :T ÂkÀɨt¦C¡@ + # *** new message + !E_EXTRFORM + :E File %s can't be extract properly.\n + +The first line of the archive is not\n + +a status line. + :T ÀÉ®× %s ¤£¯à¥¿½T¦a©â¨ú.¡@\n + +ÂkÀɪº²Ä¤@¦æ¤£¬O¤@¡@\n + +ª¬ºA¦æ.¡@ + # *** new message + !E_EXTRFORMLOG + :E File %s can't be extracted properly\n + :T ÀÉ®× %s ¤£¯à¥¿½T¦a©â¨ú¡@\n + # *** new message + !I_CURVERIS + :E Current version + :T ¥Ø«eª©¥»¡@ + # *** new message + !M_USERACCOUNTS + :E User accounts + :T ¥Î¤á±b¸¹¡@ + # *** new message + !M_USERPRIV + :E User privileges + :T ¥Î¤á¯SÅv¡@ + # *** new message + !T_COMMON + :E Common + :T ¤½¥Î¡@ + # *** new message + !I_LASTVERIS + :E Last version + :T ³Ì·sª©¥»¡@ + # *** new message + !E_APIVERSION + :E Incompatible module API version \"%s\"\n + +\"%s\" requested version %d.\n + +Version %s is provided. + :T ¤£¦X°tªº¼Ò²Õ API ª©¥» \"%s\"¡@\n + +\"%s\" ­n¨D %d ª©¥».¡@\n + +¦ý´£¨Ñ¤F %s ª©¥».¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/motd.dic linuxconf-1.15/messages/bg5/motd.dic *** linuxconf-1.14r4/messages/bg5/motd.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/motd.dic Tue Apr 13 04:15:10 1999 *************** *** 0 **** --- 1,21 ---- + @version 0 + # *** new message + !M_motd + :E Message of the day + :T ¤µ¤Ñªº°T®§¡@ + # *** new message + !T_PMISC + :E 9-Miscellaneous + :T 9-Âø¶µ¡@ + # *** new message + !F_MOTD + :E Text of the message + :T °T®§ªº¤å¥»¡@ + # *** new message + !I_MOTD + :E The following message is shown each time\na user is login in + :T ¥H¤U°T®§¬O·|¦b¨C¤@¦¸¡@\n¤@¥Î¤á°O¿ý®ÉÅV¥Ü¥X¨Ó.¡@ + # *** new message + !T_USAGE + :E Module motd\n\n No command line option\n + :T ¼Ò²Õ motd¡@\n\n ¨S¦³©R¥O¦æ¿ï¶µ¡@\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/mrtg.dic linuxconf-1.15/messages/bg5/mrtg.dic *** linuxconf-1.14r4/messages/bg5/mrtg.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/mrtg.dic Tue Apr 13 04:15:10 1999 *************** *** 0 **** --- 1,104 ---- + @version 0 + # *** new message + !M_MRTG + :E Multi Router Traffic Grapher (MRTG) + :T ¦hºØ¸ô¥Ñ¥æ³q¹º¹Ï(MRTG)¡@ + # *** new message + !E_IVLDDIREC + :E Invalid directive: %s\n + :T µL®Äªº«ü¥O: %s¡@\n + # *** new message + !F_ID + :E Graph ID + :T ¹Ï§Î ID¡@ + # *** new message + !F_TITLE + :E Graph title + :T ¹Ï§Î¼ÐÃD¡@ + # *** new message + !F_TOP + :E Top of the page + :T ­¶­±ªº³»³¡¡@ + # *** new message + !F_MAXBYTES + :E Maximum rate + :T ³Ì¤j¼Æ²v¡@ + # *** new message + !I_DELRECORD + :E Select [Del] to delete this record + :T ¿ï [§R°£] §R°£³o°O¿ý¡@ + # *** new message + !T_GRAPH + :E Graph specification + :T ¹Ï§Î³W®æ¡@ + # *** new message + !I_ADDCONF + :E Select [Add] to add a new configuration + :T ¿ï [·s¼W] ·s¼W¤@·s³]©w¡@ + # *** new message + !T_GRAPHS + :E Graphs list + :T ¹Ï§Î¦Cªí¡@ + # *** new message + !I_GRAPHS + :E Here is the list of all graphs collected\nby MRTG + :T ³oùجO©Ò¦³¥Ñ MRTG ¦¬¶°¡@\nªº¹Ï§Î¦Cªí¡@ + # *** new message + !T_SNMPREQ + :E SNMP request + :T SNMP ­n¨D¡@ + # *** new message + !F_FEATURE + :E SNMP feature + :T SNMP ©Ê¯à¡@ + # *** new message + !I_ADAPTOR0 + :E Network adaptor 0 + :T ºô¸ô¤¶­± 0¡@ + # *** new message + !F_SPCCOMMAND + :E Command + :T ©R¥O¡@ + # *** new message + !E_AMBIGIOUS + :E Can't use special command and SNMP request\nat the same time + :T ¤£¯à¦P®É¨Ï¥Î¡@\n¯S§O©R¥O¤Î SNMP ­n¨D¡@ + # *** new message + !E_ATLEASTREQ + :E You must specify either\n + +a special data collection command\n + +or an SNMP request (All three fields)\n + :T §A¥u¥i«ü©ú ¤@¶µ¯S§O¸ê®Æ¦¬¶°©R¥O¡@\n + +©Î ¤@¶µ SNMP ­n¨D(¥þ³¡¤TÄæ)¡@\n + # *** new message + !I_ADAPTOR1 + :E Network adaptor 1 + :T ºô¸ô¤¶­± 1¡@ + # *** new message + !I_ADAPTOR2 + :E Network adaptor 2 + :T ºô¸ô¤¶­± 2¡@ + # *** new message + !F_HOST + :E Host + :T ¥D¾÷¡@ + # *** new message + !F_COMMUN + :E SNMP community + :T SNMP ¹ÎÅé¡@ + # *** new message + !E_IDEMPTY + :E You must provide an ID + :T §A¥²»Ý´£¨Ñ¤@ ID¡@ + # *** new message + !E_NOSPACEID + :E No space allowed in the ID + :T ID ¤¤¤£¯à¦³ªÅ¥Õ¡@ + # *** new message + !T_PRIVMRTG + :E MRTG administrator + :T MRTG ºÞ²z­û¡@ + # *** new message + !T_PMISC + :E 9-Miscellaneous + :T 9-Âø¶µ¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/netadm.dic linuxconf-1.15/messages/bg5/netadm.dic *** linuxconf-1.14r4/messages/bg5/netadm.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/netadm.dic Tue Apr 13 04:15:11 1999 *************** *** 0 **** --- 1,219 ---- + @version 0 + # *** new message + !M_NETADM + :E cluster administration + :T ¸s¶°ºÞ²z¡@ + # *** new message + !T_USAGE + :E Module netadm\n\n --import admin-group\n --remadm [ host ]\n --slave\n + # *** new message + !F_ID + :E Group ID + :T ¸s²Õ ID¡@ + # *** new message + !T_MEMBERS + :E members + :T ¦¨­û¡@ + # *** new message + !T_SUBSYS + :E Sub-systems + :T ¤l¨t²Î¡@ + # *** new message + !T_CLUSDEF + :E Cluster specifications + :T ¸s¶°³W®æ¡@ + # *** new message + !I_CLUSDEF + :E You must specify which machine are member of the cluster\n + +and which sub-systems are managed from this station.\n + +All these sub-systems will be synchronised on the\n + +various members of the administration cluster. + :T §A¥²»Ý«ü¥X¨º¤@¾÷¾¹¬O³o¸s¶°ªº¦¨­û¡@\n + +¤Î³o²×ºÝ¯¸ºÞ²zªº¤l¨t²Î.¡@\n + +©Ò¦³³o¨Ç¤l¨t²Î±N·|¸òºÞ²z¡@\n + +¸s¶°ªº¤£¦P¦¨­û¦P¨B.¡@ + # *** new message + !E_NOSPACEID + :E No space allowed in the ID + :T ID ¤£¥i¦³ªÅ¥Õ¡@ + # *** new message + !F_DESC + :E Description + :T »¡©ú¡@ + # *** new message + !T_CLUSTERS + :E Administration groups + :T ºÞ²z¸s²Õ¡@ + # *** new message + !I_CLUSTERS + :E Here is the list of administration groups. + :T ³o¬OºÞ²z¸s²Õ¦Cªí¡@ + # *** new message + !M_ADMINGROUPS + :E Admin groups definitions + :T ºÞ²z¸s²Õ©w¸q¡@ + # *** new message + !M_ADMINTREE + :E Admin trees management + :T ºÞ²z¾ðªººÞ²z¡@ + # *** new message + !M_REMOTEADMIN + :E managing remote hosts + :T ºÞ²z»·µ{¥D¾÷¡@ + # *** new message + !T_NETADMIN + :E NETADMIN + # *** new message + !T_NETADMINT + :E Network administrator + :T ºô¸ôºÞ²z­û¡@ + # *** new message + !I_NETADMINT + :E This package allows you to manage\n + +other hosts on the network, either one by one or as groups. + :T ³o®M¥óÅý§AºÞ²z¡@\n + +¨ä¥¦ºô¸ô¤Wªº¥D¾÷, ¥i¥H¤@­Ó¸ò¤@­Ó©Î¤@²Õ¡@ + # *** new message + !E_NOTREE + :E Administration tree %s does not exist + :T ºÞ²z¾ð %s ¤£¦s¦b¡@ + # *** new message + !F_TREENAME + :E Tree name + :T ¾ð¦WºÙ¡@ + # *** new message + !I_ADDTREE + :E You must enter a name for this new administration tree.\n + +This will correspond to a new sub-directory in\n + +%s + :T §A¥²»Ý¿é¤J³o·sºÞ²z¾ðªº¦W¦r.¡@\n + +³o±N·|²Å¦X·sªº¦b %s ªº¡@\n + +¤l¥Ø¿ý.¡@ + # *** new message + !T_ADDTREE + :E New administration tree + :T ·sªººÞ²z¾ð¡@ + # *** new message + !E_NOSPACE + :E No space allowed in name + :T ¦WºÙ¤£¥i¦³ªÅ¥Õ¡@ + # *** new message + !T_ADMINTREES + :E Administration trees + :T ºÞ²z¾ð¡@ + # *** new message + !I_ADMINTREES + :E Here are the various administration trees\n + +already defined. You can add new one.\n + +An administration tree is a virtual workstation\n + +you can manage from here. The various configuration\n + +file may be distributed to other workstations/servers\n + +on the network. + :T ³oùجO¤w©w¸qªº¤£¦PªººÞ²z¡@\n + +¾ð. §A¥i¥H·s¼W¤@­Ó.¡@\n + +ºÞ²z¾ð¬O¤@­Ó§A¥i¥H¡@\n + +±q³o¸ÌºÞ²zªºµêÀÀ¤u§@¯¸¡@\n + +¤£¦Pªº³]©wÀÉ¥i¥H¤À°t¨ì¡@\n + +ºô¸ô¤W¨ä¥¦ªº¤u§@¯¸/¦øªA¾¹.¡@ + # *** new message + !F_ADMTREE + :E Administration tree + :T ºÞ²z¾ð¡@ + # *** new message + !E_CREATEDIR + :E Can't create directory %s\n(%s) + :T ¤£¯à«Ø¥ß¥Ø¿ý %s¡@\n(%s) + # *** new message + !B_PUBLISH + :E Publish + :T ¦L¨ê¡@ + # *** new message + !N_PUBLISHDONE + :E Admin group '%s' published + :T ºÞ²z¸s²Õ '%s' ¤w¦L¨ê¥X¡@ + # *** new message + !I_PUBLISHING + :E Publishing admin tree %s to group %s\n + :T µ¹¸s²Õ %s ¦L¨ê¥XºÞ²z¾ð %s¡@\n + # *** new message + !M_PUBLISHING + :E Publishing admin tree %s + :T ¦L¨ê¥XºÞ²z¾ð %s¡@ + # *** new message + !I_IMPORTING + :E Importing admin group %s\n + :T ¶i¤fºÞ²z¸s²Õ %s¡@\n + # *** new message + !P_IMPORT + :E to import configuration files + :T ¶i¤f³]©wÀÉ¡@ + # *** new message + !E_OUTOFSYNC + :E Protocol out of sync + :T ¨ó©w¤£¦P¨B¡@ + # *** new message + !E_EXPORTERR + :E Export error\n%s + :T ¿é¥X¿ù»~¡@\n%s + # *** new message + !E_STAT + :E Can't stat file\n%s + # *** new message + !F_ROOTPASS + :E root password + :T root ±K½X¡@ + # *** new message + !I_EXPORTINGTO + :E Exporting to %s\n + +\n + +Please enter root password so linuxconf\n + +can connect to the netadm special account\n + +using ssh (secure shell) + :T ¿é¥X¦Ü %s¡@\n + +\n + +½Ð¿é¤J root ±K½X¥O linuxconf¡@\n + +¯à¨Ï¥Î ssh (¦w¥þ¥~´ß)¡@\n + +³s¦Ü netadm ¯S§O±b¸¹¡@ + # *** new message + !B_EXPORT + :E Export + :T ¿é¥X¡@ + # *** new message + !N_UPDATED + :E Station %s updated + :T ²×ºÝ¯¸ %s ¤w§ó·s¡@ + # *** new message + !P_ROOTONLY + :E do remote administration + :T ¶i¦æ»·µ{ºÞ²z¡@ + # *** new message + !N_GUIMODEONLY + :E This function is only available when running\nthe graphical user interface. + :T ³o¥\\¯à¥u¯à¦b¥Î¤á¹Ï§Î¤¶­±¡@\n¤¤¨Ï¥Î¡@ + # *** new message + !F_REMHOST + :E Host to administer + :T ­nºÞ²zªº¥D¾÷¡@ + # *** new message + !T_REMADMIN + :E Remote administration + :T »·µ{ºÞ²z¡@ + # *** new message + !N_CONNECTING + :E Connecting to %s + :T ³s±µ¦Ü %s¡@ + # *** new message + !I_EXPORTOK + :E The administration group %s\n + +has been successfully copied to machine\n + +%s.\n + +Do you want to install the various new config files\n + +immediatly and activate the changes ? + :T ºÞ²z¸s²Õ %s¡@\n + +¤w¦¨¥\\«þ¨©¦Ü %s ³o¾÷¡@\n + +§A¬O§_­n¥ß§Y¦w¸Ë¤£¦P¡@\n + +ªº³]©wÀɤαҰʳo§ïÅÜ?¡@ + # *** new message + !T_EXPORTOK + :E Export completed + :T ¿é¥X§¹¦¨¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/netconf.dic linuxconf-1.15/messages/bg5/netconf.dic *** linuxconf-1.14r4/messages/bg5/netconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/netconf.dic Tue Apr 13 04:15:11 1999 *************** *** 0 **** --- 1,2043 ---- + @version 0 + # *** new message + !X_EXECUTING + :E Executing: %s\n + :T °õ¦æ: %s¡@\n + # *** new message + !X_WOULDEXEC + :E Would have executed \"%s\" but not allowed\n + :T ¤w°õ¦æ \"%s\" ¦ý¤£Àò²a¡@\n + # *** new message + !X_SIGNALING + :E %s %s with signal %d return %d\n + :T %s %s ¦³«H¸¹ %d ¦^¶Ç %d¡@\n + # *** new message + !E_MISSINFO + :E Missing information about daemon or utility %s\nin configuration file %s\n + :T ¯Ê¤ÖªA°È(daemon)¤Î¤½¥Îµ{¦¡¸ê®Æ %s¡@\n ©ó³]©wÀÉ %s¡@\n + # *** new message + !T_SCOPE + :E Netconf scope + :T ºô¸ô³]©w½d³ò¡@ + # *** new message + !I_SCOPE + :E This dialog let you configure the different commands\n + +and daemon linuxconf is using.\n + +If you deselect one command, then you must\n + +managed this yourself. This facility\n + +is provided to help integrate linuxconf into\n + +a working setup.\n + +*** Unless you know what you are doing ***\n + +*** fiddling here is not recommended ***\n + :T ³o¹ï¸Ü²°Åý§A¨Ï¥Î¤¤¤§ linuxconf ³]©w¡@\n + +¤£¦P©R¥O©MªA°È¡@\n + +¦p§A¤£¿ï¥ô¦ó¤@¶µ©R¥O, §A¥²»Ý¦Û¤v¾ã²z¡@\n + +³o¶µ¥\\¯à¨Ï linuxconf ¯àºî¦X¦¨¤@¥\\¯à³]©w¡@\n + +***¡@°£«D§A¤w²M·¡¥¿¦b¶i¦æ¤§¥\\¯à ***¡@\n + +***¡@½Ð¤Å¦b¦¹¶Ã¸Õ¡@***¡@\n + # *** new message + !X_SETNISDOM + :E Set NIS domain to %s\n + :T °t¸m NIS ºô°ì¦Ü %s¡@\n + # *** new message + !E_UNKNOWNDAEMON + :E Unknown daemon :%s:....\ndon't know how to support it\n + :T ¤£©úªA°È(daemon) :%s:.... ¡@\n¤£ª¾«ç¥i¤ä´©¡@\n + # *** new message + !P_CHGDATE + :E correct the date and time + :T §ï¥¿¤é´Á¤Î®É¶¡¡@ + # *** new message + !F_ZONE + :E zone + :T °Ï°ì¡@ + # *** new message + !F_STORECMOS + :E Store date in CMOS + :T Àx¦s¤é´Á¦Ü CMOS¡@ + # *** new message + !F_UNIVERSAL + :E universal format(GMT) + :T (GMT)¼Ò¦¡¡@ + # *** new message + !F_GETDATE + :E Get date from server(s) + :T ¥Ñ¦øªA¾¹¤¤¨ú±o¤é´Á¡@ + # *** new message + !T_TIME + :E Time + :T ®É¶¡¡@ + # *** new message + !F_HOUR + :E Hour + :T ®É¡@ + # *** new message + !F_MINUTES + :E Minutes + :T ¤À¡@ + # *** new message + !F_SECONDS + :E Seconds + :T ¬í¡@ + # *** new message + !T_DATE + :E Date + :T ¤é´Á¡@ + # *** new message + !F_YEAR + :E Year + :T ¦~¡@ + # *** new message + !F_MONTH + :E Month + :T ¤ë¡@ + # *** new message + !F_DAYOFMONTH + :E Day of month + :T ¤é¡@ + # *** new message + !T_DATETIME + :E Workstation date & time + :T ¤u§@¯¸¤§¤é´Á¤Î®É¶¡¡@ + # *** new message + !I_DATETIME + :E Fill this form to indicate how the workstation must\nget its date and time\n + :T ¦b¦¹«ü¥Ü¤u§@¯¸«ç¼Ë¡@\nÀò¨ú¤é´Á¤Î®É¶¡¡@\n + # *** new message + !E_CANTPROBE + :E Can't probe current setup of network device %s\n + +No way to activate the network\n + :T ¤£¯à±´µø¥Ø«eºô¸ô³]³Æ %s ³]©w¡@\n + +µLªk°_°Êºô¸ô¡@\n + # *** new message + !E_NODEVICE + :E Networking was configured\n + +for the interface %s\n + +but this device is not configured\n + +in the kernel\n + :T ºô¸ô¤w³]©w¬°¡@\n + +¤¶­± %s¡@\n + +¦ý³o³]³ÆÁÙ¥¼³]©w©ó¡@\n + +®Ö¤ß¤¤¡@\n + # *** new message + !E_IVLEXPORTS + :E Invalid line %d in file %s\n%s\n + :T ²Ä %d ¦æ¬OµL®Ä(ÀÉ®× %s)¡@\n%s\n + # *** new message + !F_PATHEXP + :E Path to export + :T ¿é¥X¸ô®|¡@ + # *** new message + !F_CLIHOSTS + :E Client name(s) + :T «È¤á¦WºÙ¡@ + # *** new message + !F_COMMENT + :E Comment (opt) + :T ³Æµù(¿ï¶µ)¡@ + # *** new message + !T_ONEEXPORT + :E One exported file system + :T ¿é¥XÀɮרt²Î¡@ + # *** new message + !T_EXPORTED + :E Exported file systems + :T ¿é¥XÀɮרt²Î¡@ + # *** new message + !I_EXPORTED + :E Setup file systems available for client hosts\n + +Those systems will be accessible through NFS\n + :T °t¸mÀɮרt²Îµ¹«È¤áºÝ¡@\n + +¸Ó¨t²Î¥i¸g NFS ¦s¨ú¡@ + # *** new message + !F_ADDONE + :E Select [Add] to add a new definition + :T ¿ï [·s¼W] ·s¼W©w¸q¡@ + # *** new message + !T_ROUTEHOSTS + :E Route to other hosts + :T ¦Ü¥t¤@¥D¾÷ªº¸ô®|¡@ + # *** new message + !T_ROUTENET + :E Route to other networks + :T ¦Ü¥t¤@ºô¸ôªº¸ô®|¡@ + # *** new message + !I_ROUTEHOSTS + :E If your network has access to other networks\n + +you must tell how to reach those networks\n + :T ¦p§Aªººô¸ô¥ç³s¦Ü¥t¤@ºô¸ô¡@\n + +½Ð«ü¥Ü³s¦Ü¦¹ºô¸ôªº¤èªk¡@\n + # *** new message + !I_TOADDROUTE + :E Select [Add] to add a new route + :T ¿ï [·s¼W] ·s¼W¤@¸ô®|¡@ + # *** new message + !M_DEFROUTE + :E Defaults + :T ¤º©w¡@ + # *** new message + !M_ROUTENET + :E other routes to networks + :T ¦Üºô¸ôªº¥t¥~¸ô®|¡@ + # *** new message + !M_ROUTEHOSTS + :E other routes to hosts + :T ¦Ü¥D¾÷ªº¥t¥~¸ô®|¡@ + # *** new message + !M_ROUTED + :E the routed daemon + # *** new message + !M_SET + :E Set + :T °t¸m¡@ + # *** new message + !M_CONFIG + :E Configure + :T ³]©w¡@ + # *** new message + !T_ROUTES + :E Routes to other networks + :T ¦Ü¥t¤@ºô¸ôªº¸ô®|¡@ + # *** new message + !I_ROUTES + :E If your network has access to other networks\n + +you must tell how to reach those networks\n + +For many setup, simply setting the default route\n + +is good enough\n + +\n + +If you only talk to machines on the local network\n + +then all this is not necessary.\n + :T ¦p§Aªººô¸ô¥ç¥i³s¦Ü¥t¤@ºô¸ô¡@\n + +½Ð»¡©ú³s¦Ü¥t¤@ºô¸ôªº¤èªk¡@\n + +¤j³¡¤À±¡ªp¤U,¿ï¤º©w¸ô®|¤w¥i¡@\n + +\n + +¦p§A¥u»Ý¸ò¥»ºô¸ôªº¹q¸£¹ï¸Ü(talk)¡@\n + +§A¤£»Ý§@¥ô¦ó¨Æ¡@\n + # *** new message + !I_DEFGTW + :E Enter the IP number of the main gateway\n + +And indicate if this machine is allowed to\n + +route IP packets + :T ½Ð¿é¤J¥D¹h¹D(main gateway)IP ¦a§}¡@\n + +¥ç½Ð«ü¥Ü³o¾÷¬O§_¥i¥H¡@\n + +¸ô¥Ñ IP ¥]«Ê¡@ + # *** new message + !F_PRIMNAME + :E Primary name + domain + :T ¥D­n¦WºÙ¤Îºô°ì¡@ + # *** new message + !F_ALIASES + :E Aliases (opt) + :T §O¦W(¿ï¶µ)¡@ + # *** new message + !F_IPADR + :E IP address + :T IP ¦a§}¡@ + # *** new message + !F_NETADR + :E Network address (opt) + :T ºô¸ô¦a§}(¿ï¶µ)¡@ + # *** new message + !F_NETMASK + :E Netmask (opt) + :T ºô¸ô¾B¸n(¿ï¶µ)¡@ + # *** new message + !E_NEEDIP + :E Adaptor %d: Missing IP number + :T %d °t±µ¥d: ¨S¦³ IP ¦a§}¡@ + # *** new message + !F_IVLDIP + :E Invalid IP number: %s + :T µL®Ä IP ¦a§}: %s¡@ + # *** new message + !F_IVLDNETIP + :E Invalid network number:%s + :T µL®Äºô¸ô¦a§}: %s¡@ + # *** new message + !E_IVLMASK + :E Invalid netwask: %s + :T µL®Äºô¸ô¾B¸n: %s¡@ + # *** new message + !Q_NOIP + :E Are you sure + :T ¬O§_ªÖ©w¡@ + # *** new message + !I_NOIP + :E No IP address was entered for the first\n + +ethernet adaptor. Either it is a mistake\n + +(you forgot) or you don't have a network\n + +adaptor at all.\n + +\n + +If you don't have any network adaptor,\n + +it is a good idea to enter the IP number\n + +127.0.0.1, which correspond to a dummy\n + +internal network. This may help later with\n + +network aware application such as X11.\n + +\n + +Do you want me to enter 127.0.0.1 for you ? + :T ²Ä¤@¶ôºô¸ô¥dªº IP ¦a§}¨S¦³¡@\n + +¿é¤J.¥i¯à§A§Ñ¤F¿é¤J¡@\n + +©Î§Aªº¾÷¾¹®Ú¥»¨S¦³ºô¸ô¥d¡@\n + +\n + +¦pªG§A¨S¦³ºô¸ô¥d,§A¥i¥H¿é¤J 127.0.0.1¡@\n + +¬° IP ¦a§}.³o¬O¤@­ÓµêÀÀ¤º³¡¦a§}¡@\n + +³o¹ï¤@¨Çºô¸ôÀ³¥Îµ{¦¡(¨Ò¦p X11)¬O¦³¥Îªº.¡@\n + +\n + +§A¬O§_»Ý­n¿é¤J 127.0.0.1?¡@ + # *** new message + !T_THISHOST + :E This host basic configuration + :T ³o³¡¥D¾÷ªº°ò¥»³]©w¡@ + # *** new message + !I_THISHOST + :E You are allowed to control the parameters\n + +which are specific to this host and related\n + +to its main connection to the local network + :T §A¥i¥H¥D±±³o¥D¾÷ªº°Ñ¼Æ¤Î¡@\n + +¸ò³o¥D¾÷¦³Ãöªººô¸ô¥D¾÷¡@ + # *** new message + !E_OUTOFMEMORY + :E Out of memory\n + :T °O¾ÐÅ餣¨¬\n¡@ + # *** new message + !F_IPNUM + :E IP number + :T IP ¦a§}¡@ + # *** new message + !T_HOSTNETDEF + :E host/network definition + :T ¥D¾÷/ºô¸ô ©w¸q¡@ + # *** new message + !E_IVLIPNUM + :E Invalid IP number + :T µL®Äªº IP ¦a§}¡@ + # *** new message + !I_HOSTSDEF + :E Select a host/network definition to modify + :T ¿ï¤@ ¥D¾÷/ºô¸ô ©w¸q§ó§ï¡@ + # *** new message + !I_ADDDEF + :E Select [Add] to add a new definition + :T ¿ï [·s¼W] ·s¼W¤@©w¸q¡@ + # *** new message + !F_FIRSTETH + :E First ethernet adaptor + :T ²Ä¤@¶ôºô¸ô¥d¡@ + # *** new message + !F_SECOND + :E Second + :T ²Ä¤G¡@ + # *** new message + !F_THIRD + :E Third + :T ²Ä¤T¡@ + # *** new message + !F_FOURTH + :E Fourth + :T ²Ä¥|¡@ + # *** new message + !F_FIRSTSLIP + :E First SLIP/CSLIP channel + :T ²Ä¤@­Ó SLIP/CSLIP ºÞ¹D¡@ + # *** new message + !F_FIRSTPPP + :E First PPP channel + :T ²Ä¤@­Ó PPP ºÞ¹D¡@ + # *** new message + !E_IVLDNETLEVEL + :E File %s\n + +contains an invalid netconf level: %d\n + +It must be 0, 1 or 2.\n + +Just run \"netconf --runlevel\" with an\n + +explicit value (local, client, or server)\n + +to fix this.\n + +\n + +Assuming \"local\" configuration for now.\n + :T %s Àɮס@\n + +§t¦³¤@µL®Äªº netconf ¯Å§O: %d¡@\n + +¤@©w¬O 0,1 ©Î 2¡@\n + +½Ð¦æ \"netconf --runlevel\" ¦A¥[¤W¤@¡@\n + +Åã¥Ü­È (local, client ©Î server)¡@\n + +§@§ï¥¿¡@\n + +\n + +²{°²³] "\local\" ³]©w¡@\n + # *** new message + !E_CANTOPEN + :E Can't open file %s\n(%s)\n + :T ¤£¯à¶}±Ò %s ÀÉ®×\n(%s)¡@\n + # *** new message + !P_PERMUPDATE + :E update the status of the system + :T §ó·s¨t²Îª¬ºA¡@ + # *** new message + !X_LIST + :E List of things required to activate current configuration\n + :T ±Ò°Ê¥Ø«e³]©w©Ò»Ý\n¡@ + # *** new message + !M_INFOR + :E Basic host information + :T ¥D¾÷°ò¥»¸ê®Æ¡@ + # *** new message + !M_HOSTS + :E Information about other hosts + :T ¨ä¥¦¥D¾÷¸ê®Æ¡@ + # *** new message + !M_NETWORKS + :E Information about other networks + :T ¨ä¥¦ºô¸ô¸ê®Æ¡@ + # *** new message + !M_ROUTING + :E Routing and gateways + :T ¸ô¥Ñ¤Î¹h¹D¡@ + # *** new message + !M_RESOLV + :E Name server specification (DNS) + :T ¦WºÙ¦øªA¾¹ (DNS)¡@ + # *** new message + !M_NIS + :E Network Information System (NIS) + :T ºô¸ô«H®§¨t²Î (NIS)¡@ + # *** new message + !M_ORDER + :E Host name search path + :T ¥D¾÷·j´M¸ô®|¡@ + # *** new message + !M_EXPORTS + :E Exported file systems (NFS) + :T ¥~±¾Àɮרt²Î (NFS)¡@ + # *** new message + !M_ISOL + :E Isolated/simple network from scratch + :T ¹jÂ÷/²³æ ºô¸ô¡@ + # *** new message + !T_CLIENTTASKS + :E Client tasks + :T «È¤áºÝ¤u§@¡@ + # *** new message + !T_SERVER + :E Server tasks + :T ¦øªA¾¹ºÝ¤u§@¡@ + # *** new message + !T_BOOT + :E Boot services + :T °_¾÷ªA°È¡@ + # *** new message + !T_FIREWALL + :E Firewalling + :T ¨¾¤õÀð¡@ + # *** new message + !T_NETWORK + :E Network configurator + :T ºô¸ô³]©w¡@ + # *** new message + !I_NETWORK + :E This package allows you to configure a\n + +TCP/IP network from scratch using ethernet\n + +and modem (or other serial connection) + :T ³o®M¥ó¥i¥HÀ°§A¥Ñ°ò¥»¶}©l¡@\n + +³]©w TCP/IP ºô¸ô---Ethernet¡@\n + +¤Î¼Æ¾Ú¾÷ (©Î¨ä¥¦¦ê³s¤èªk)¡@\n + +§¡¥i)¡@ + # *** new message + !E_NETCONF + :E Netconf: Invalid arguments\n + :T Netconf: µL®Ä¤Þ¼Æ¡@\n + # *** new message + !E_NETCONFDEF + :E `netconf' without an argument starts the interactive mode\n + :T `netconf` ¯Ê¤Ö¤Þ¼Æ¶}©l¥æ½Í¼Ò¦¡¡@\n + # *** new message + !E_IVLRUNLEVEL + :E Invalid runlevel %s for network daemons\n + +Values 1,2,3,4,5,6 or local,client,server\n + +are valid.\n + :T µL®Ä %s runlevel (µ¹ºô¸ôªA°È)¡@\n + +¥u¦³ 1,2,3,4,5,6 ©Î local,client,server¡@\n + +¤~¦³®Ä¡@\n + # *** new message + !E_NISSERV + :E Unknown NIS server %s\n + :T ¤£©ú NIS ¦øªA¾¹ %s¡@\n + # *** new message + !F_NISDOM + :E NIS domain + :T NIS ºô°ì¡@ + # *** new message + !F_NISSERV + :E NIS server + :T NIS ¦øªA¾¹¡@ + # *** new message + !T_NISCONF + :E NIS client configuration + :T NIS «È¤áºÝ³]©w¡@ + # *** new message + !I_NISCONF + :E You must enter the NIS domain\n + +A server must be specified\n + +if it can't be probed by a broadcast\n + +The server is either specified as an IP number\n + +or as a name.\n + :T §A¥²»Ý¿é¤J NIS ºô°ì¡@\n + +¦pªG¥Ñ¼s¼½¤£¯àÀò¨ú¸ê®Æ¡@\n + +½Ð«ü©ú¤@¦øªA¾¹¡@\n + +¦øªA¾¹¥i¥H©w¬° IP ¦a§}¡@\n + +©Î¦WºÙ¡@\n + # *** new message + !P_SETTINGNIS + :E Setting the NIS domain name + :T NIS ºô°ì¦WºÙ°t¸m¡@ + # *** new message + !E_USAGEDOM + :E usage: domainname [ nisdomain ]\n + :T »yªk: domainname [ nisdomain ]¡@\n + # *** new message + !F_ROUTEDREQ + :E routed is required + :T »Ý­n¸ô®|¡@ + # *** new message + !F_NOEXPORT + :E Does not export any routes (Silent) + :T ¤£»Ý­n¿é¥X¥ô¦ó¸ô®|(Silent)¡@ + # *** new message + !F_EXPORTDEFRT + :E Export your default route + :T ¿é¥X¹w³]¸ô®|¡@ + # *** new message + !T_ROUTEDCONF + :E Routed daemon configuration + :T ªA°È(daemon)¸ô¥Ñ³]©w¡@ + # *** new message + !I_ROUTEDCONF + :E Check the appropriate options\n + +unless you have a simple network, routed\n + +is required.\n + :T À˵ø¾A¥Î¿ï¶µ¡@\n + +°£«D§Aªº¬O²³æºô¸ô,¸ô¥Ñ¬O¥²»Ýªº¡@\n + # *** new message + !E_CANTSILENT + :E Can't be both silent and a gateway\n + :T silent ¤Î¹h¹D¤£¥i¦@¦s¡@\n + # *** new message + !E_IVLDEST + :E Invalid destination %s for line %d in file %s\n%s\n + :T µL®Äªº¥Øªº¦a %s (¦b²Ä %d ¦æ) ÀÉ®× %s¡@\n%s¡@\n + # *** new message + !E_NOKEYGW + :E Keyword gw missing from line %d of file %s\n%s + :T ¯Ê¤ÖÃöÁä¦r gw (¦b²Ä %d ¦æ) ÀÉ®× %s¡@\n%s + # *** new message + !E_IVLGTW + :E Invalid gateway %s for line %d in file %s\n%s\n + :T µL®Ä¹h¹D %s (¦b²Ä %d ¦æ) ÀÉ®× %s¡@\n%s\n + # *** new message + !E_NETMASK + :E Keyword netmask expected, on line %d of file %s\n%s + :T »Ý­nÃöÁä¦r netmask (¦b²Ä %d ¦æ) ÀÉ®× %s¡@\n%s + # *** new message + !E_IVLOUTPUT + :E Invalid content in /proc/net/route\n%s\n + :T µL®Ä¤º®e /proc/net/route¡@\n%s\n + # *** new message + !F_GATEWAY + :E Gateway + :T ¹h¹D¡@ + # *** new message + !F_DEST + :E Destination + :T ¥Øªº¦a¡@ + # *** new message + !T_ROUTESPEC + :E route specification + :T ¸ô¥Ñ³W®æ¡@ + # *** new message + !I_ROUTESPEC + :E Enter either IP number or name\n + :T ¿é¤J IP ¦a§}©Î¦WºÙ¡@\n + # *** new message + !I_SIMPLEINST + :E This option allows you to install\n + +a complete network setup, including the names\n + +of all machine.\n + +\n + +This will overwrite the following files:\n + + %s\n + + %s\n + :T ³o¿ï¶µÀ°§A¦w¸Ë¡@\n + +¤@­Ó§¹¾ãºô¸ô³]©w--¥]¬A©Ò¦³¾÷¾¹¡@\n + +ªº¦WºÙ¡@\n + +\n + +³o·|Âмg¥H¤UÀÉ®×:¡@\n + + %s\n + + %s\n + # *** new message + !Q_SIMPLEINST + :E Installing network from scratch + :T ¥Ñ°ò¥»¶}©l¦w¸Ëºô¸ô¡@ + # *** new message + !DUMMY_NAME_SERV + :E linux-serv + # *** new message + !DUMMY_NAME_BANANA + :E banana + # *** new message + !DUMMY_NAME_APPLE + :E apple + # *** new message + !DUMMY_NAME_CHERRY + :E cherry + # *** new message + !DUMMY_NAME_ORANGE + :E orange + # *** new message + !DUMMY_NAME_WOLF + :E wolf + # *** new message + !DUMMY_NAME_LION + :E lion + # *** new message + !DUMMY_NAME_MOUSE + :E mouse + # *** new message + !DUMMY_NAME_EAGLE + :E eagle + # *** new message + !DUMMY_NAME_COBRA + :E cobra + # *** new message + !DUMMY_NAME_ELVIS + :E elvis + # *** new message + !DUMMY_NAME_BABE + :E babe + # *** new message + !DUMMY_NAME_ALNOLD + :E arnold + # *** new message + !DUMMY_NAME_ROCKY + :E rocky + # *** new message + !DUMMY_NAME_BOND + :E bond + # *** new message + !DUMMY_NAME_RINGO + :E ringo + # *** new message + !DUMMY_NAME_PAUL + :E paul + # *** new message + !DUMMY_NAME_JOHN + :E john + # *** new message + !DUMMY_NAME_GEORGE + :E george + # *** new message + !DUMMY_NAME_MADONA + :E madona + # *** new message + !DUMMY_NAME_TARZAN + :E tarzan + # *** new message + !DUMMY_NAME_LINUS + :E linus + # *** new message + !DUMMY_NAME_CANADA + :E canada + # *** new message + !DUMMY_NAME_USA + :E usa + # *** new message + !DUMMY_NAME_FINLAND + :E finland + # *** new message + !DUMMY_NAME_FRANCE + :E france + # *** new message + !T_YOURMACHINE + :E Your machine name + :T ¾÷¾¹¦WºÙ¡@ + # *** new message + !I_YOURMACHINE + :E You must select a name for your machine\n + +out of this list. Each of your co-networker\n + +must select a different name\n + :T §A¤@©w­n¿ï¤@­Ó³o¦Cªí¨S¦³ªº¦WºÙ¡@\n + +¨ä¥LºôºÞ­û¥²»Ý¿ï¥t¤@¦WºÙ¡@\n + # *** new message + !M_ACTIVATE + :E Activate the changes + :T ±Ò°Ê§ïÅÜ¡@ + # *** new message + !M_PREVIEW + :E Preview what has to be done + :T ¹wÀ˧ïÅÜ¡@ + # *** new message + !T_STATUS + :E Status of the system + :T ¨t²Îª¬ªp¡@ + # *** new message + !I_STATUS + :E The state of the system is not\n + +in sync with the current/updated\n + +configuration. You are allowed to\n + +make it current, or continue with\n + +the current configuration. You can also\n + +look at the things that will have to be done\n + +to make the system current.\n + :T ³o¨t²Îªºª¬ºA¸ò ¥Ø«e/§ó·s¡@\n + +ªºª¬ºA¤£¦P¨B. §A¥i¥H¿ï¡@\n + +¥Ø«e©Î¶i¦æ¥Ø«eªº³]©w.§A¤]¥iÀ˵ø¤@¤Á¡@\n + +¥O§A¹F¦Ü¥Ø«e³]©wªº¤u§@¡@\n + # *** new message + !T_THINGSTODO + :E Things to do + :T ­n°µªº¤u§@¡@ + # *** new message + !X_WOULDHAVE + :E Would have %s %s\n + :T »Ý­n %s %s¡@\n + # *** new message + !X_STOPPED + :E stopped + :T °±¤î¡@ + # *** new message + !E_IVLBASIC + :E Invalid basic configuration of the host\n%s\n + :T µL®Äªº¥D¾÷°ò¥»³]©w¡@\n%s\n + # *** new message + !E_NOPRIMNAME + :E No definition for the primary name\n + +in /etc/hosts.\n + +There is no entry with the name or alias\n + +\"loghost\".\n + :T ¨S¦³¥D¦WºÙªº©w¸q¡@\n + +¦b /etc/hosts.¡@\n + +¨S¦³¿é¤J¦WºÙ©Î§O¦W¡@\ + +\"loghost\".¡@\n + # *** new message + !P_SETHOSTNAME + :E Setting the hostname + :T ³]©w¥D¾÷¦W¡@ + # *** new message + !X_SETHOSTNAME + :E Setting hostname to %s\n + :T ³]©w¥D¾÷¦W %s¡@\n + # *** new message + !E_CANTSETHOST + :E Can't set the host name to %s\n(%s)\n + :T ¤£¥i³]©w¥D¾÷¦W¬° %s¡@\n(%s)\n + # *** new message + !E_NOTKNOWN + :E %s is not known\n + :T ¤£©ú %s¡@\n + # *** new message + !E_HOSTUSAGE + :E usage: hostname [-f] [ host name ]\n + + hostname -d\n + + hostname --domain\n + :T »yªk: hostname [-f] [ host name ]¡@\n + + hostname -d\n + + hostname --domain\n + # *** new message + !X_STARTED + :E started + :T ¶}©l¡@ + # *** new message + !E_DNSDOMUSAGE + :E usage: dnsdomainname\n(No argument)\n + :T »yªk: dnsdomainname¡@\n(¨S¦³¤Þ¼Æ)\n + # *** new message + !E_UNKHOST + :E Unknown host name + :T ¤£©ú¥D¾÷¦WºÙ¡@ + # *** new message + !E_NOALIAS + :E No kernel support for devices aliasing + :T ®Ö¤ß¤£¤ä´©³]³Æ§O¦W¡@ + # *** new message + !E_SETALIAS + :E Invalid alias setup for device %s\n%s + :T µL®Äªº³]³Æ§O¦W³]©w %s¡@\n%s + # *** new message + !M_ALIAS + :E IP aliases for virtual hosts + :T µêÀÀ¥D¾÷ IP §O¦W¡@ + # *** new message + !F_IPALIASES + :E IP alias or range + :T IP §O¦W©Î½d³ò¡@ + # *** new message + !T_IPALIASFORDEV + :E IP aliases for device %s + :T ³]³Æ %s ªº IP §O¦W¡@ + # *** new message + !I_IPALIASFORDEV + :E You can enter alternative IP numbers for a\n + +network interface. You can enter several numbers\n + +per lines. Many time savers syntax are supported\n + +Here are some examples for:\n + + 192.168.1.10 192.168.1.11 192.168.1.12\n + + 192.168.1.10-12\n + + 10-12 + :T §A¥i¥H¿é¤J¥t¥~ªº IP ¦a§}µ¹¡@\n + +¤@¶ôºô¸ô¥d. §A¥i¥H¨C¤@¦æ¿é¤J¡@\n + +´X­Ó¼Æ¦r. ²¼g¥ç¥i¡@\n + +¥H¤U¬O´X­Ó¨Ò¤l:¡@\n + + 192.168.1.10 192.168.1.11 192.168.1.12\n + + 192.168.1.10-12\n + + 10-12 + # *** new message + !T_IPALIASES + :E Edit IP aliases configurations + :T ½s¿è IP §O¦W³]©w¡@ + # *** new message + !I_SYSTEMS + :E Each network device may have several\n + +IP number. Alternate ones are called alias and are\n + +entered here.\n + :T ¨C¤@ºô¸ô³]³Æ¥i¥H¦³¼Æ­Ó¡@\n + +IP ¦a§}. ¨ä¥¦¦a§}¬O§O¦W. ¥i¥H¦b¦¹¡@\n + +¿é¤J.¡@\n + # *** new message + !P_UPDALIAS + :E to update IP aliases + :T §ó·s IP §O¦W¡@ + # *** new message + !F_DAEPATH + :E path of the command + :T ©R¥O¸ô®|¡@ + # *** new message + !T_DAECONFIG + :E Daemons and command config + :T ªA°È(Daemons)¤Î©R¥O³]©w¡@ + # *** new message + !I_DAECONFIG + :E You are allowed to changed the way\na daemon or command is invoked. + :T §A¥i¥HÂàÅÜ¡@\n ªA°È(Daemons)©Î©R¥O¤Þ°Ê¤èªk¡@ + # *** new message + !F_DAEARGS + :E arguments + :T ¤Þ¼Æ¡@ + # *** new message + !E_IPXFORMAT + :E Invalid format of file %s\nCan't manage IPX properly\n + :T µL®Ä %s ÀÉ®×¼Ò¦¡¡@\n¤£¯à¥¿½T¦aºÞ²z IPX¡@\n + # *** new message + !F_IPXNETNUM + :E Network number(0=probe) (hex) + :T ºô¸ô¦a§}(0=´ú¸Õ) (hex)¡@ + # *** new message + !F_IPXINTERNALNETNUM + :E Internal network number(opt) + :T ¤º³¡ºô¸ô¦a§}(¿ï¶µ)¡@ + # *** new message + !F_IPXINTERNALNODENUM + :E Internal node number(opt) + :T ¤º³¡¸`ÂI¦a§}(¿ï¶µ)¡@ + # *** new message + !F_IPXAUTOCONFIG + :E Autoconfigure + :T ¦Û°Ê³]©w¡@ + # *** new message + !F_PRIMARY + :E primary + :T ¥D­n¡@ + # *** new message + !F_ISPRIMARY + :E is the primary interface + :T ¬O¥D­n¤¶­±¡@ + # *** new message + !T_IPXCONF + :E IPX interface configuration + :T IPX ¤¶­±³]©w¡@ + # *** new message + !I_IPXCONF + :E You must associate a frame type with\n + +a network devices and a network number\n + +For one device, it is possible to have several\n + +combination of frame and network number.\n + +Most linux client machine (IPX client) will be happy\n + +by selecting the \"autoconfigure\" choices. + :T §A»Ý­n±Nºô¸ô¤¶­±³sô¦Ü¤@®ØÃþ«¬¤Î¡@\n + +¥[¤Wºô¸ô¦a§}¡@\n + +¤@­Ó³]³Æ¥i¥H¦³´X­Ó®ØÃþ«¬¤Îºô¸ô¡@\n + +²Õ¦X.¤j³¡¤À linux «È¤áºÝ (IPX «È¤á)¹ï \"¦Û°Ê³]©w\"¡@\n + +³o¿ï¶µ¬OÅwªï¡@ + # *** new message + !M_IPXCONF + :E IPX interface setup + :T IPX ¤¶­±³]©w¡@ + # *** new message + !F_FRAMETYPES + :E interfaces frame types + :T ®ØÃþ«¬¤¶­±¡@ + # *** new message + !F_FRAMETYPE + :E Frame type + :T ®ØÃþ«¬¡@ + # *** new message + !T_IPXINTERNAL + :E Internal net + :T ¤º³¡ºô¡@ + # *** new message + !F_IPXENABLE + :E Enable + :T ±Ò°Ê¡@ + # *** new message + !F_IPXNETWORK + :E IPX networking + :T IPX ºô¸ô¡@ + # *** new message + !E_IPXSOCKET + :E Can't open IPX control socket\n + +Looks ODD to me.\n + +Maybe linuxconf is incompatible with the kernel release + :T ¤£¯à¶}±Ò IPX ±±¨î´¡®y¡@\n + +»á¬ðÉJ¡@\n + +¥i¯à linuxconf ¤£¾A¥Î¦¹®Ö¤ß¡@ + # *** new message + !F_NETWORKHOST + :E network or host + :T ºô¸ô©Î¥D¾÷¡@ + # *** new message + !F_NETMASKOPT + :E netmask(opt) + :T ºô¸ô¾B¸n(¿ï¶µ)¡@ + # *** new message + !F_EMPTYSLOT + :E Select [Add] to add empty slots at the end of the dialog + :T ¿ï [·s¼W] ¦b¦¹¹ï¸Ü²°©³³¡·s¼WªÅ¥ÕÄæ¡@ + # *** new message + !T_HTMLACCESS + :E Linuxconf html access control + :T Linuxconf html ¦s¨ú±±¨î¡@ + # *** new message + !I_HTMLACCESS + :E You can specify which networks or hosts are allowed\n + +to access linuxconf to configure your computer\n + +(They need a password still)\n + :T §A¥i¥H©w¸q¨º¤@ºô¸ô©Î¥D¾÷¥i¥H¡@\n + +¦s¨ú linuxconf ¨Ó³]©w¥»¾÷¡@\n + +(¥i¥H³]©w±K½X)¡@ + # *** new message + !M_HTMLACCES + :E Linuxconf network access + :T Linuxconf ºô¸ô¦s¨ú¡@ + # *** new message + !E_IVLDHOSTNET + :E invalid host or network: %s\n + :T µL®Ä¥D¾÷©Îºô¸ô: %s¡@\n + # *** new message + !E_IVLDMASK + :E invalid netmask: %s\n + :T µL®Äºô¸ô¾B¸n: %s¡@\n + # *** new message + !F_LOCALMODE + :E No network + :T ¨S¦³ºô¸ô¡@ + # *** new message + !F_CLIENTMODE + :E Client mode + :T «È¤á¼Ò¦¡¡@ + # *** new message + !F_SERVERMODE + :E Server + :T ¦øªA¾¹¡@ + # *** new message + !T_NETRUNLEVEL + :E Network operation mode + :T ºô¸ô§@·~¼Ò¦¡¡@ + # *** new message + !I_NETRUNLEVEL + :E + # *** new message + !E_NETRUNLEVEL + :E Change network operation mode + :T §ó§ïºô¸ô§@·~¼Ò¦¡¡@ + # *** new message + !E_IPNOMATCH + :E IP %s do not match %s/%s + :T IP %s ¤£¹ïÀ³ %s/%s¡@ + # *** new message + !T_MAINACCESS + :E 0-May use linuxconf + :T 0-¥i¥Î linuxconf¡@ + # *** new message + !T_PSYSCONTROL + :E 0-General system control + :T 0-¤@¯ë¨t²Î±±¨î¡@ + # *** new message + !P_MAINACCESS + :E access linuxconf + :T ¦s¨ú linuxconf¡@ + # *** new message + !F_BCAST + :E Broadcast (opt) + :T ¼s¼½ (¿ï¶µ)¡@ + # *** new message + !E_NETMASKNEEDED + :E A netmask is needed for interface %s\n + +because you have supplied a network number + :T ¤¶­± %s »Ý­nºô¸ô¾B¸n¡@\n + +¦]§A´£¨Ñ¤Fºô¸ô¦a§}¡@ + # *** new message + !E_IVLIPINTER + :E Invalid IP configuration for interface %s\n + +IP address\t%s\t%s\n + +Net address\t%s\t%s\n + +Netmask\t%s\t%s\n + +Broadcast\t%s\t%s\n + :T ¤¶­± %s ¦³µL®Ä IP ³]©w¡@\n + +IP ¦a§}¡@\t%s\t\%s¡@\n + +ºô¸ô¦a§}¡@\t%s\t%s¡@\n + +ºô¸ô¾B¸n¡@\t%s\t%s¡@\n + +¼s¼½¦ì§}¡@\t%s\t%s¡@\n + # *** new message + !E_TOOLONG + :E The command takes more than %d seconds to execute, odd\n + :T ³o©R¥O»Ý­n¦h¹L %d ¬í, ©_©Ç¡@\n + # *** new message + !F_MANAGED + :E Managed + :T ºÞ²z¡@ + # *** new message + !I_MANAGED + :E Linuxconf may operate it + :T Linuxconf ¥i¥H¹B¦æ¡@ + # *** new message + !F_SKIP + :E Skip + :T ¸õ¹L¡@ + # *** new message + !F_ABORT + :E Abort + :T ¤¤¤î¡@ + # *** new message + !I_ABORT + :E this session + :T ³o°Ï¡@ + # *** new message + !I_KILLCMD + :E this command + :T ³o©R¥O¡@ + # *** new message + !I_CMDTIMEOUT + :E The command\n + +\n + +%s\n + +\n + +is taking longer than expected to complete\n + +Please take action + :T ³o©R¥O¡@\n + +\n + +%s\n + +\n + +»Ý­n»áªø®É¶¡§¹¦¨¡@\n + +½Ð§@¾A¦X°Ê§@¡@ + # *** new message + !T_CMDTIMEOUT + :E Too long + :T ¤Óªø¡@ + # *** new message + !I_SKIP + :E this command + :T ³o©R¥O¡@ + # *** new message + !F_KILLCMD + :E Kill + :T ¨ú®ø¡@ + # *** new message + !E_KILLED + :E killed by operator + :T ¥Ñ¾Þ§@­û¨ú®ø¡@ + # *** new message + !B_CONFIG + :E Config + :T ³]©w¡@ + # *** new message + !S_CROND + :E Cron daemon + :T Cron ªA°È¡@ + # *** new message + !S_MOUNTALL + :E Mounting local volumes + :T ±¾¤J¥»¾÷¨÷¡@ + # *** new message + !S_FIXPERM + :E Checking files permissions + :T ÀˬdÀÉ®×Åv­­¡@ + # *** new message + !S_LOOPBACK + :E Setting network loopback + :T ³]©wºô¸ô°j¸ô¡@ + # *** new message + !S_PORTMAP + :E Starting the RPC portmapper + :T ¶}©l RPC portmapper¡@ + # *** new message + !S_INETD + :E Starting inetd + :T ¶}©l inetd¡@ + # *** new message + !S_LILO + :E Checking LILO + :T Àˬd LILO¡@ + # *** new message + !S_ALIASLOOP + :E Setting IP aliases on network loopback + :T ³]©wºô¸ô­~¸ô IP §O¦W¡@ + # *** new message + !S_RETURN + :E return %d\n + :T ªð¦^ %d¡@\n + # *** new message + !S_SECTBASE + :E Checking base configuration + :T Àˬd°ò¥»³]©w¡@ + # *** new message + !S_KMODULES + :E Checking kernel's modules + :T Àˬd®Ö¤ß¼Ò²Õ¡@ + # *** new message + !S_SYSLOG + :E Starting system loggers + :T ¶}©l¨t²Î°O¿ý¡@ + # *** new message + !S_PRTSPOOL + :E Starting printer spooler + :T ¶}©l¦C¦L±Æ§Ç¡@ + # *** new message + !S_SECTCLIENT + :E Setting client networking + :T ³]©w«È¤áºÝºô¸ô¡@ + # *** new message + !S_IPDEVICES + :E Configure network IP devices + :T ³]©wºô¸ô IP ³]³Æ¡@ + # *** new message + !S_IPXDEVICES + :E Configure network IPX devices + :T ³]©wºô¸ô IPX ³]³Æ¡@ + # *** new message + !S_IPROUTES + :E Configure IP routes + :T ³]©w IP ¸ô¥Ñ¡@ + # *** new message + !S_ROUTEDS + :E Start routing daemons + :T ¶}©l¸ô¥ÑªA°È¡@ + # *** new message + !S_NIS + :E Starting NIS + :T ¶}©l NIS¡@ + # *** new message + !S_AMD + :E Starting automounter + :T ¶}©l¦Û°Ê±¾¤W¡@ + # *** new message + !S_SECTSERVER + :E Setting server networking + :T ³]©w¦øªA¾¹ºô¸ô¡@ + # *** new message + !S_ALIAS + :E Setting IP aliases on net devices + :T ³]©wºô¸ô³]³Æ IP §O¦W¡@ + # *** new message + !S_NFS + :E Starting NFS service + :T ¶}©l NFS ªA°È¡@ + # *** new message + !S_UNSETSERVER + :E Unsetting server networking + :T ¦øªA¾¹ºô¸ô´_¦ì¡@ + # *** new message + !S_STOPNFS + :E Stopping NFS service + :T °±¤î NFS ªA°È¡@ + # *** new message + !S_UNSETCLIENT + :E Unsetting networking + :T ¤£°t¸mºô¸ô¡@ + # *** new message + !S_KSENDMAIL + :E Stopping sendmail + :T °±¤î sendmail¡@ + # *** new message + !S_KROUTEDS + :E Stopping routing daemons + :T °±¤î¸ô¥ÑªA°È¡@ + # *** new message + !S_KAMD + :E Stopping automounter + :T °±¤î¦Û°Ê±¾¤W¡@ + # *** new message + !S_MOUNTNET + :E Mounting network volumes + :T ±¾¤Wºô¸ô¨÷¡@ + # *** new message + !T_CONFIGLOG + :E Configuration log + :T ³]©w°O¿ý¡@ + # *** new message + !I_CONFIGLOG + :E These logs shows all configuration commands\nissued by linuxconf + :T ³o°O¿ý¦C¥X©Ò¦³¥Ñ linuxconf¡@\nµo¥Xªº³]©w©R¥O¡@ + # *** new message + !E_LEFTBG + :E Left running in the background + :T ¦b­I¹Ò¤¤¹B¦æ¡@ + # *** new message + !Q_SEELOGS + :E Some errors were reported\nDo you want to examine the logs + :T µo¥Í¿ù»~¡@\n§A¬O§_»Ý­nÀˬd°O¿ý¡@ + # *** new message + !Q_SOMEERRORS + :E There were some errors + :T µo¥Í¿ù»~¡@ + # *** new message + !I_PREBOOT + :E Tasks before booting + :T ¦b°_¾÷«eªº¤u§@¡@ + # *** new message + !I_BOOTING + :E Booting + :T °_¾÷¡@ + # *** new message + !I_FIXPERM + :E Fixperm session + :T Fixperm °Ï¡@ + # *** new message + !I_UPDATE + :E Activating changes + :T ±Ò°Ê§ïÅÜ¡@ + # *** new message + !I_RUNLEVEL + :E Switching runlevel + :T Âà´« runlevel¡@ + # *** new message + !I_PPPPOSTCON + :E PPP postconnect commands + :T PPP ³s½u«á©R¥O¡@ + # *** new message + !E_PIDFILE + :E Invalid PID file: %s + :T µL®Ä PID ÀÉ®×: %s¡@ + # *** new message + !I_LOGACCESS + :E in %s + :T ¦b %s¡@ + # *** new message + !F_LOGACCESS + :E Log access + :T °O¿ý¦s¨ú¡@ + # *** new message + !E_DAEUNKNOWN + :E Unknown command or daemon %s + :T ¤£©ú©R¥O©ÎªA°È %s¡@ + # *** new message + !I_MISSCMPN + :E Linuxconf can't locate the command %s\n + +on your system.\n + +\n + +The command is either missing (not installed)\n + +or installed with a different name or path\n + +\n + +Do you want to change the configuration for this command ? + :T Linuxconf §ä¤£¨ì©R¥O %s¡@\n + +\n + +³o¥i¯à¬O¯Ê¤Ö³o©R¥O(¨S¦³¦w¸Ë)¡@\n + +©Î¦w¸Ë¦WºÙ/¸ô®|¤£¦P¡@\n + +\n + +§A¬O§_»Ý­n§ó§ï³o©R¥O¤§³]©w?¡@ + # *** new message + !Q_MISSCMPN + :E Missing component ? + :T ¯Ê¤Ö²Õ¥ó?¡@ + # *** new message + !F_PKGNAME + :E Package's name + :T ®M¥ó¦WºÙ¡@ + # *** new message + !F_PKGSTART + :E Start command + :T ±Ò°Ê©R¥O¡@ + # *** new message + !F_PKGSTOP + :E Stop command + :T °±¤î©R¥O¡@ + # *** new message + !F_PKGRELOAD + :E Reload command + :T ­«¸ü©R¥O¡@ + # *** new message + !F_PKGMODULE + :E Module name or path + :T ¼Ò²Õ¦WºÙ©Î¸ô®|¡@ + # *** new message + !F_PIDFILE + :E PID files + :T PID Àɮס@ + # *** new message + !T_ACTIVATION + :E Activation control + :T ±Ò°Ê±±¨î¡@ + # *** new message + !F_STARTAFTER + :E Start after package + :T «Ê¥]«á±Ò°Ê¡@ + # *** new message + !F_STARTLEVEL + :E Start at runlevel + :T ±Ò°Êªº runlevel¡@ + # *** new message + !F_LOCAL + :E No networking + :T ¨S¦³ºô¸ô¡@ + # *** new message + !F_CLIENT + :E Client networking + :T «È¤áºÝºô¸ô¡@ + # *** new message + !F_SERVER + :E Server networking + :T ¦øªA¾¹ºô¸ô¡@ + # *** new message + !F_PKGCONFIG + :E Config files + :T ³]©wÀÉ¡@ + # *** new message + !F_PKGCOMMENTS + :E Comments + :T ³Æµù¡@ + # *** new message + !T_DROPCONF + :E Dropin configuration + :T Dropin ³]©w¡@ + # *** new message + !I_DROPCONF + :E You can control how Linuxconf will manage\n + +a given package, when it will start, stop, and reload/restart\n + +and how and why\n + :T §A¥i¥H±±¨î Linuxconf «ç¼ËºÞ²z¡@\n + +¤@­Ó®M¥ó, ¦ó®É±Ò°Ê,°±¤î,­«¸ü/¦A±Ò°Ê¡@\n + +¥ç¥i§iª¾³o¨Ç®M¥ó¬°¦ó¤Î«ç¼Ë¤u§@¡@\n + # *** new message + !F_STOPLEVEL + :E Stop at runlevel + :T °±¤îªº runlevel¡@ + # *** new message + !F_PKGDESC + :E Package's description + :T ®M¥ó»¡©ú¡@ + # *** new message + !I_ADDDROPIN + :E Select [Add] to add a new dropin definition + :T ¿ï [·s¼W] ·s¼W¤@ dropin ©w¸q¡@ + # *** new message + !T_DROPINMNG + :E Dropin management + :T Dropin ºÞ²z¡@ + # *** new message + !I_DROPINMNG + :E You are allowed to modify, delete and\n + +add new dropins. Dropins provide information\n + +letting information control and manage add-on package + :T §A¥i¥H§ó§ï,§R°£¤Î¡@\n + +·s¼W dropins. Dropins ¥i¥H´£¨Ñ¸ê®Æ¡@\n + +¥ç¥i§@¸ê®ÆºÞ²z¤Îªþ¥óºÞ²z¡@ + # *** new message + !F_PROCNAME + :E Process names + :T §@·~¦WºÙ¡@ + # *** new message + !T_STARTSYS + :E Starting %s + :T ¶}±Ò %s¡@ + # *** new message + !T_STOPSYS + :E Stopping %s + :T °±¤î %s¡@ + # *** new message + !F_NORELOAD + :E No reload/restart needed + :T ¤£¥i­«¸ü/»Ý­n¦A±Ò°Ê¡@ + # *** new message + !F_REVISION + :E Dropin revision + :T Dropin ­×¥¿¡@ + # *** new message + !E_CMDMISS + :E Command %s missing\n + :T ¯Ê¤Ö©R¥O %s¡@\n + # *** new message + !F_DONTSTOP + :E Never stop + :T ¥Ã¤£°±¤î¡@ + # *** new message + !F_READWRITE + :E May write + :T ¥i¼g¡@ + # *** new message + !F_ROOTSQUASH + :E Root privileges + :T Root Åv­­¡@ + # *** new message + !F_LINKREL + :E translate symbolic links + :T ½Ķ symbolic links¡@ + # *** new message + !T_ACTNEW + :E Activate new service + :T ±Ò°Ê·sªA°È¡@ + # *** new message + !I_ACTNEW + :E The service %s has been added to your system\n + + (%s)\n + +Do you want to enable it ? + :T ªA°È %s ¤w¸g¥[¤J§Aªº¨t²Î¡@\n + + (%s)\n + +§A¬O§_»Ý­n±Ò°Ê¥¦?¡@ + # *** new message + !O_ENABLED + :E Enabled + :T ±Ò°Ê¡@ + # *** new message + !O_TMPDIS + :E Temp-disabled + :T ¼È®É°±¤î¡@ + # *** new message + !O_DISABLED + :E Disabled + :T °±¥Î¡@ + # *** new message + !T_SERVICECTL + :E Service control + :T ªA°È±±¨î¡@ + # *** new message + !I_SERVICECTL + :E You can selectivly enable or disable\n + +any services. You can disable services on a permanent\n + +basis or on a temporary basis. Temporary means that\n + +Linuxconf will remind you about those and will reactive\n + +them at the next reboot. + :T §A¥i¿ï¾Ü±Ò°Ê©Î°±¥Î¡@\n + +¥ô¦óªA°È.§A¥i¥Ã¤[©Î¼È®É°±¥Î¡@\n + +³oªA°È. ¼È®É¬O«ü Linuxconf ±N·|¦b¤U¦¸°_¾÷®É¡@\n + +´£¥Ü§A³o¶µªA°È°±¥Î.¡@ + # *** new message + !I_REENABLE + :E Re-enabling service %s\n + :T ­«·s±Ò°ÊªA°È %s¡@\n + # *** new message + !P_DELDROP + :E to delete a dropin + :T §R°£¤@ dropin¡@ + # *** new message + !T_ROUTEALT + :E Route to alternate local networks + :T ¦Ü¥t¤@¥»¾÷ºô¸ôªº¸ô¥Ñ¡@ + # *** new message + !M_ROUTEALT + :E routes to alternate local nets + :T ¦Ü¥t¤@¥»¾÷ºôªº¸ô¥Ñ¡@ + # *** new message + !I_PPPDIALD + :E PPP diald setup commands + :T PPP diald °t¸m©R¥O¡@ + # *** new message + !T_ADAPTOR + :E Adaptor + :T ¤¶­±¥d¡@ + # *** new message + !F_CONFIG + :E Config + :T ³]©w¡@ + # *** new message + !T_HOSTHEAD + :E IP number\tname & aliases + :T IP ¦a§}¡@\t¦WºÙ¤Î§O¦W¡@ + # *** new message + !H_SERVICEMODE + :E Enabled\tTemp-disabled\tDisabled + :T ±Ò°Ê¡@\t¼È®É°±¥Î¡@\t°±¥Î¡@ + # *** new message + !T_NETMISC + :E Misc + :T Âø¶µ¡@ + # *** new message + !T_CROND + :E Scheduled tasks daemon + :T ©w®É¤u§@ªA°È¡@ + # *** new message + !T_ALIASES + :E IP aliases + :T IP §O¦W¡@ + # *** new message + !T_PORTMAP + :E Port mapper + # *** new message + !T_INETD + :E Inetd server + :T Inetd ¦øªA¾¹¡@ + # *** new message + !T_SYSLOG + :E system logger + :T ¨t²Î°O¿ý¡@ + # *** new message + !T_KLOGD + :E Kernel logger + :T ®Ö¤ß°O¿ý¡@ + # *** new message + !T_LPD + :E Printer spooler + :T ¦C¦L±Æ§Ç¡@ + # *** new message + !T_ROUTED + :E Routed dynamic router + :T ¸ô¥Ñ°ÊºA¸ô¥Ñ¾¹¡@ + # *** new message + !T_GATED + :E Gated dynamic router + :T ¹h¹D°ÊºA¸ô¥Ñ¾¹¡@ + # *** new message + !T_YPBIND + :E NIS client + :T NIS «È¤á¡@ + # *** new message + !T_AMD + :E Auto-mounter + :T ¦Û°Ê±¾¤J¡@ + # *** new message + !T_NFS + :E NFS server + :T NFS ¦øªA¾¹¡@ + # *** new message + !T_RARP + :E RARP service + :T RARP ªA°È¡@ + # *** new message + !T_FIREWALLING + :E Firewalling + :T ¨¾¤õÀð¡@ + # *** new message + !T_KERNELD + :E Kernel's modules manager + :T ®Ö¤ß¼Ò²ÕºÞ²z¡@ + # *** new message + !H_EXPORTS + :E Directory\tHost\tMore + :T ¥Ø¿ý¡@\t¥D¾÷¡@\t§ó¦h¡@ + # *** new message + !T_NETWORKING + :E NETWORKING + :T ºô¸ô¡@ + # *** new message + !H_ROUTENET + :E Network\tNetmask\tGateway + :T ºô¸ô¡@\tºô¸ô¾B¸n¡@\tºô¸ô¹h¹D¡@ + # *** new message + !H_ROUTEHOST + :E Host\tGateway + :T ¥D¾÷¡@\t¹h¹D¡@ + # *** new message + !H_ROUTEALT + :E Network\tNetmask\tInterface + :T ºô¸ô¡@\tºô¸ô¾B¸n¡@\t¤¶­±¡@ + # *** new message + !E_OK + :E Ok + :T ½T©w¡@ + # *** new message + !E_INV + :E Invalid + :T µL®Ä¡@ + # *** new message + !F_NETDEV + :E Net device + :T ºô¸ô³]³Æ¡@ + # *** new message + !F_MODULE + :E Kernel module + :T ®Ö¤ß¼Ò²Õ¡@ + # *** new message + !F_MODIO + :E I/O port (opt) + :T I/O °ð (¿ï¶µ)¡@ + # *** new message + !F_MODIRQ + :E Irq (opt) + :T Irq (¿ï¶µ)¡@ + # *** new message + !F_ARCNET + :E Arcnet adaptor + :T Arcnet ¤¶­±¡@ + # *** new message + !F_ATPNET + :E Pocket adaptor + :T Pocket ¤¶­±¡@ + # *** new message + !F_FIRSTTKR + :E First Token ring adaptor + :T ²Ä¤@­Ó Token ring ¤¶­±¡@ + # *** new message + !F_FIRSTDUM + :E First dummy device + :T ²Ä¤@µêÀÀ³]³Æ¡@ + # *** new message + !I_CLASS_A + :E Class A network + :T Class A ºô¸ô¡@ + # *** new message + !I_CLASS_B + :E Class B network + :T Class B ºô¸ô¡@ + # *** new message + !I_CLASS_C + :E Class C network + :T Class C ºô¸ô¡@ + # *** new message + !I_SUBNET128 + :E 25 bits sub-network + :T 25 bits ¤lºô¡@ + # *** new message + !I_SUBNET192 + :E 26 bits sub-network + :T 26 bits ¤lºô¡@ + # *** new message + !I_SUBNET224 + :E 27 bits sub-network + :T 27 bits ¤lºô¡@ + # *** new message + !I_SUBNET240 + :E 28 bits sub-network + :T 28 bits ¤lºô¡@ + # *** new message + !I_SUBNET248 + :E 29 bits sub-network + :T 29 bits ¤lºô¡@ + # *** new message + !E_RANGESYN + :E Invalid range syntax + :T µL®Ä»yªk½d³ò¡@ + # *** new message + !T_EXECSYSV + :E Executing some Sysv init scripts + :T °õ¦æ¬Y¨Ç Sysv init scripts¡@ + # *** new message + !T_LATEOUTPUT + :E Grabbing some late messages from command %s\n + :T ¥Ñ©R¥O %s ±o¨ì¤@¨Ç©µ¿ð°T®§¡@ + # *** new message + !F_SECURE + :E Request access from secure port + :T ­n¨D±q¦w¥þ°ð¤¤¦s¨ú¡@ + # *** new message + !F_BOOTCMD + :E Boot time cleanup + :T °_¾÷®É²M¬~¡@ + # *** new message + !T_BOOTDROPIN + :E Dropin's boot time commands\n + :T Dropin ªº°_¾÷©R¥O¡@\n + # *** new message + !M_DONTQUIT + :E Don't quit + :T ¤£Â÷¶}¡@ + # *** new message + !E_SETETH0DEF + :E netconf --setdevdef can only be used by root\n + :T netconf --setdevdef ¥u¥i¥Ñ root ¹B¦æ¡@\n + # *** new message + !E_SETGATEWAY + :E netconf --setgateway can only be used by root\n + :T netconf --setgateway ¥u¥i¥Ñ root ¹B¦æ¡@\n + # *** new message + !E_SETCLOCKMODE + :E netconf --setclockmode can only be used by root\n + :T netconf --setclockmode ¥u¥i¥Ñ root ¹B¦æ¡@\n + # *** new message + !I_NEWMAXALIASES + :E Raising kernel max aliases per device limit to %d\n + :T ¼W¥[®Ö¤ß³Ì¤j§O¦W¼Æ(¨C³]³Æ)¦Ü %d¡@\n + # *** new message + !E_TOOALIASES + :E Too many IP aliases, maximum %d + :T ¤Ó¦h IP §O¦W, ³Ì¤j¥u¥i %d¡@ + # *** new message + !I_RESETFORNEW + :E Unsetting aliases to grow the kernel table from %d to %d entries\n + :T ­«³]®Ö¤ßªí§O¦W¥Ñ %d ¼W¦Ü %d ­Ó¡@\n + # *** new message + !E_BOOTRC + :E netconf --bootrc path [ path ] + # *** new message + !F_MODINST + :E (inst) + # *** new message + !E_DRPNOMODPATH + :E Module %s not found for dropin %s + :T ¼Ò²Õ %s §ä¤£¨ì (dropin %s)¡@ + # *** new message + !I_ARCHIVE + :E Configuration archiving + :T ³]©wÂkÀÉ¡@ + # *** new message + !M_NFSSERV + :E NFS server + :T NFS ¦øªA¾¹¡@ + # *** new message + !I_EXTRACT + :E Configuration extraction + :T ³]©wÀÉ´£¨ú¡@ + # *** new message + !I_SWITCHCONF + :E Switching configuration + :T Âà´«³]©w¡@ + # *** new message + !N_FILEFUTURE + :E The file %s as a revision date in the future\n + +This probably means that you system time is wrong\n + +or as been wrong at some point. + :T ÀÉ®× %s ªº§ó·s¤é´Á¬O¤@­Ó±N¨Ó¤é´Á¡@\n + +³oªí¥Ü§Aªº¨t²Î®É¶¡¿ù»~¡@\n + +©Î¬Y¨Ç¿ù»~¡@ + # *** new message + !M_SERVICESACT + :E Services activity + :T ªA°È¬¡°Ê¡@ + # *** new message + !I_MANUAL + :E Manual + :T ¤â°Ê¡@ + # *** new message + !I_DHCP + :E Dhcp + # *** new message + !I_BOOTP + :E Bootp + # *** new message + !F_CONFMODE + :E Config mode + :T ³]©w¼Ò¦¡¡@ + # *** new message + !I_PCMCIA + :E PCMCIA device (removable) + :T PCMCIA ³]³Æ (¥i²¾)¡@ + # *** new message + !P_INITNET + :E Intialising the network + :T °_©lºô¸ô¡@ + # *** new message + !I_PUBLISH + :E Publish an admin tree + :T ¥Xª©¤@ admin ¾ð¡@ + # *** new message + !I_IMPORT + :E Import an admin group + :T ¿é¤J¤@ admin ²Õ¡@ + # *** new message + !I_SETGATEWAY + :E Changing default gateway to %s\n + :T Âà´«¹w³]¹h¹D¦Ü %s¡@\n + # *** new message + !X_CONFIG + :E Config + :T ³]©w¡@ + # *** new message + !I_KILLING + :E Killing + :T ¨ú®ø¡@ + # *** new message + !E_MISSINGPRC + :E Some process missing, full restart of package %s required\n + :T ¯Ê¤Ö¬Y¨Ç¤u§Ç, ®M¥ó %s »Ý­n§¹¥þ­«·s±Ò°Ê¡@\n + # *** new message + !F_AUTORELOAD + :E Autoreloaded + :T ­«·s¸ü¤J¡@ + # *** new message + !F_PKGPROBE + :E Probe command + :T À˵ø©R¥O¡@ + # *** new message + !I_CREATEUSER + :E Creating user account + :T «Ø¥ß¥Î¤á±b¸¹¡@ + # *** new message + !I_DELETEUSER + :E Deleting user account + :T ¨ú®ø¥Î¤á±b¸¹¡@ + # *** new message + !I_ADAPACTIVE + :E Enabled + :T ±Ò°Ê¡@ + # *** new message + !E_SERVICE + :E Unknown service %s\n + :T ¤£©úªA°È %s¡@\n + # *** new message + !I_ROUTERON + :E Enabling routing\n + :T ±Ò°Ê¸ô¥Ñ¡@\n + # *** new message + !I_ROUTEROFF + :E Disabling routing\n + :T °±¥Î¸ô¥Ñ¡@\n + # *** new message + !E_ROUTINGCTRL + :E Can't controlling routing with this kernel + :T ³o®Ö¤ß¤£¥i±±¨î¸ô¥Ñ¡@ + # *** new message + !F_DEFGTW + :E Default gateway + :T ¹w³]¹h¹D¡@ + # *** new message + !T_DEFAULTS + :E Defaults + :T ¹w³]¡@ + # *** new message + !I_ISROUTER + :E Enable routing + :T ±Ò°Ê¸ô¥Ñ¡@ + # *** new message + !E_NOHOSTNAME + :E Host name not defined + :T ¥¼©w¸q¥D¾÷¦W¡@ + # *** new message + !E_TOOMSEARCH + :E Too many entries in search statement\nin file %s + :T ÀÉ®× %s¡@\nªº·j¯Á±Ô­z¤Ó¦h¶µ¥Ø¡@ + # *** new message + !E_IVLDLINE + :E Invalid line %d in %s + :T ²Ä %d ¦æµL®Ä (¦b %s)¡@ + # *** new message + !E_TOOMANYSERVERS + :E Too many nameservers defined in %s\n + +maximum 3\n + +\n + +If you edit and save, you will loose some entries\n + +This is not only a limit of linuxconf\n + +but a limit of the system in general\n + +See \"man 5 resolver\" + :T ¤Ó¦h¦WºÙ¦øªA¾¹©w¸q¤F(¦b %s)¡@\n + +³Ì¦h 3 ­Ó¡@\n + +\n + +¦p§A½s¿è¤ÎÀx¦s,§A±N·l¥¢¤@¨Ç¶µ¥Ø¡@\n + +³o¤£¶È¬O linuxconf ªº­­¨î¡@\n + +¤]¬O¤@¯ë¨t²Îªº­­¨î¡@\n + +°Ñ¾\\ \"man 5 resolver\"¡@ + # *** new message + !F_DNSNEEDED + :E DNS usage + :T DNS »yªk¡@ + # *** new message + !M_DNSNEEDED + :E DNS is required for normal operation + :T ¥¿±`¹B¦æ¤U»Ý­n DNS¡@ + # *** new message + !F_DEFDOM + :E default domain + :T ¹w³]ºô°ì¡@ + # *** new message + !F_NAMESERV1 + :E nameserver 1 + :T ¦WºÙ¦øªA¾¹ 1¡@ + # *** new message + !F_NAMESERV2 + :E nameserver 2 (opt) + :T ¦WºÙ¦øªA¾¹ 2 (¿ï¶µ)¡@ + # *** new message + !F_NAMESERV3 + :E nameserver 3 (opt) + :T ¦WºÙ¦øªA¾¹ 3 (¿ï¶µ)¡@ + # *** new message + !F_SEARCHDOM + :E search domain %d (opt) + :T §ä´Mºô°ì %d (¿ï¶µ)¡@ + # *** new message + !T_RESOLVCONF + :E Resolver configuration + :T ¸ÑªR¾¹³]©w¡@ + # *** new message + !I_RESOLVCONF + :E You can specify which name server will be used\n + +to resolv host ip number. Using the DNS is\n + +to handle this on a TCP/IP network. The others\n + +are the local /etc/hosts file\n + + (see \"information about other hosts\" menu\n + +or the NIS system\n + :T §A¥i¥H«ü¥Ü¨º¤@­Ó¦WºÙ¦øªA¾¹§@¬°¸ÑªR¥D¾÷ ip ¦a§}.¡@\n + +¦b TCP/IP ºô¸ô¤¤¬O¥i¥H¨Ï¥Î DNS ªº. ¥t¤@ºØ¬O¡@\n + +¦b¥»¾÷¤¤ªº /etc/hosts Àɮס@\n + + (½Ð°Ñ·Ó \"¨ä¥¦¥D¾÷¸ê°T\" µæ³æ¡@\n + +©Î NIS ¨t²Î)¡@\n + # *** new message + !I_CHGDOMRES + :E Changing resolver domain to %s\n + :T Âà´«¸ÑªR¾¹ºô°ì¬° %s¡@\n + # *** new message + !I_CHGSERVER + :E Changing DNS server to %s\n + :T Âà´« DNS ¦øªA¾¹¬° %s¡@\n + # *** new message + !I_CHGSEARCH + :E Changing DNS search to %s\n + :T Âà´« DNS ·j¯Á¬° %s¡@\n + # *** new message + !I_UPDATING + :E Updating %s\n + :T §ó·s %s¡@\n + # *** new message + !F_MULTI + :E Multiple IPs for one host + :T ¤@³¡¥D¾÷ªº¦h­« IPs¡@ + # *** new message + !T_NAMESERV + :E Name service access + :T ¦WºÙªA°È¦s¨ú¡@ + # *** new message + !I_NAMESERV + :E You must tell the system in which order\n + +the various name services must be probed\n + +\n + +hosts mean /etc/hosts is probed\n + +NIS stand for Network Information System\n + +dns stands for Domain Name Service\n + :T §A¥²»Ý§iª¾¨t²Î¤£¦P¦WºÙªA°ÈÀ˵ø\¡@\n + +ªº¦¸§Ç¡@\n + +hosts ªí¥Ü¨Ï¥Î /etc/hosts¡@\n + +NIS ªí¥Ü¨Ï¥Î ºô¸ô¸ê°T¨t²Î¡@\n + +dns ªí¥Ü¨Ï¥Î ºô°ì¦WºÙªA°È¡@\n + # *** new message + !P_WRITEHOSTS + :E write /etc/host.conf + :T ¼g¤J /etc/host.conf¡@ + # *** new message + !E_IVLDIPDNS + :E Invalid IP number for nameserver %d\n + :T µL®Ä IP ¦a§} (nameserver %d)¡@\n + # *** new message + !N_CHECKING + :E Checking dns connectivity + :T ´ú¸Õ dns ³s½u¡@ + # *** new message + !N_NOTGOOD + :E Not good + :T ¤£¦n¡@ + # *** new message + !N_GOOD + :E Ok + :T ½T©w + # *** new message + !E_DNSPROBLEM + :E The DNS does not answer within %d seconds\n + +This is bad and will cause major problems later\n + +Do you want to continue ?\n + +\n + +(Note that this may indicate one minor DNS problem\n + + please consult the help screen for further info) + :T DNS ¤£¯à¦b %d ¬í¤º¦^µª¡@\n + +³o·|±N¥O¥H«áµo¥ÍÄY­«°ÝÃD¡@\n + +¬O§_Ä~Äò?¡@\n + +\n + +(³o¤]¥i¯à¬O¤@²³æ DNS °ÝÃD¡@\n + + ½Ð°Ñ·Ó³o­¶ªº»¡©úÀÉÀò¨ú§ó¦h¸ê®Æ)¡@ + # *** new message + !E_DNSCONNECT + :E DNS connectivity + :T DNS ³s½u¡@ + # *** new message + !I_MODIFYUSER + :E Updating user account + :T §ó·s¥Î¤á±b¸¹¡@ + # *** new message + !H_DAEMONS + :E Name\tPath\tMod. + # *** new message + !H_NETDEV + :E Network device + :T ºô¸ô³]³Æ¡@ + # *** new message + !I_CHANGINGSERVICES + :E Turning services on and off + :T ¶}±Ò©ÎÃö³¬ªA°È¡@ + # *** new message + !I_ENABLED + :E Enabled + :T ±Ò°Ê¡@ + # *** new message + !I_TMPDISABLED + :E Temp-disabled + :T ¼È®É°±¥Î¡@ + # *** new message + !I_DISABLED + :E Disabled + :T °±¥Î¡@ + # *** new message + !I_SWITCHING + :E Switch service %s to %s\n + :T ªA°È¥Ñ %s Âର %s¡@\n + # *** new message + !H_SERVICEMODEENH + :E Enabled\tDisabled + :T ±Ò°Ê¡@\t°±¥Î¡@ + # *** new message + !E_NONETDEV + :E Missing network device + :T ¯Ê¤Öºô¸ô³]³Æ¡@ + # *** new message + !E_IVLDDST + :E Invalid destination IP number + :T µL®Ä IP ¦a§}¥Øªº¦a¡@ + # *** new message + !E_IVLDGTW + :E Invalid gateway IP number + :T µL®Ä¹h¹D IP ¦a§}¡@ + # *** new message + !E_IVLDMSK + :E Invalid netmask + :T µL®Ä¾B¸n¡@ + # *** new message + !F_INTERFACE + :E Interface + :T ¤¶­±¡@ + # *** new message + !F_HOSTNAME + :E Host name + :T ¥D¾÷¦W¡@ + # *** new message + !F_ENABLEHTML + :E Enable network access + :T ±Ò°Êºô¸ô¦s¨ú¡@ + # *** new message + !E_ONLYROOT + :E Only root is allowed to do that + :T ¥u¦³ root ¥Î¤á¤~¥i¨Ï¥Î¡@ + # *** new message + !I_USAGE + :E netconf command line options\n + +\n + + --bootrc rc_dir_path [ previous_rc_dir_path ]\n + + --connect site [--fore]\n + + --dialctl\n + + --disconnect site\n + + --initnet\n + + --postconnect linuxconf_dialout site ppp-device\n + + --postconnect linuxconf_dialin site ppp-device\n + + --predisconnect linuxconf_dialout site ppp-device\n + + --predisconnect linuxconf_dialin site ppp-device\n + + --resetfw\n + + --runlevel 0|1|2\n + + --runlevel local|client|server\n + + --S00linuxconf\n + + --S99linuxconf\n + + --setdevdef no_device name ip netmask device\n + + --setgateway ip\n + + --setupdiald site iface mask local remote metric\n + + --status\n + + --update\n + # *** new message + !I_MISC + :E Miscellaneous task + :T Âø¶µ¤u§@¡@ + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/pppdialin.dic linuxconf-1.15/messages/bg5/pppdialin.dic *** linuxconf-1.14r4/messages/bg5/pppdialin.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/pppdialin.dic Tue Apr 13 04:15:12 1999 *************** *** 0 **** --- 1,166 ---- + @version 0 + # *** new message + !T_USAGE + :E Module pppdialin\n\n No command line option\n + :T ¼Ò²Õ pppdialin¡@\n\n ¨S¦³©R¥O¦æ¿ï¶µ¡@\n + # *** new message + !T_PPPPARMS + :E PPP parms + :T PPP °Ñ¼Æ¡@ + # *** new message + !F_COPYACCT + :E Copy from account + :T ¥Ñ±b¸¹«þ¨©¡@ + # *** new message + !F_ALLOCFROMTTY + :E Allocate remote IP from tty name + :T ¥Ñ tty ¦WºÙ¤À°t»·µ{ IP¡@ + # *** new message + !F_REMOTEIP + :E Remote IP number + :T »·µ{ IP ¦a§}¡@ + # *** new message + !F_OPTIONS + :E other pppd options + :T ¨ä¥¦ pppd ¿ï¶µ¡@ + # *** new message + !F_IDLETIME + :E Idle time + :T ¶¢¸m®É¶¡¡@ + # *** new message + !F_MAXTIME + :E Maximum connect time + :T ³Ì¤j³s½u®É¶¡¡@ + # *** new message + !E_IPFROMTTYORNOT + :E The IP number can't be allocated from the tty\nand assigned manually + :T ³o IP ¦a§}¤£¯à¥Ñ tty ¤À°t¡@\n­n¤â°Ê¤À°t¡@ + # *** new message + !I_PPPDIALIN + :E PPP dialing configs + :T PPP ¼·¸¹³]©w¡@ + # *** new message + !T_ROUTING + :E Routing + :T ¸ô¥Ñ¡@ + # *** new message + !F_NETWORK + :E Network + :T ºô¸ô¡@ + # *** new message + !F_NETNASK + :E Netmask + :T ¾B¸n¡@ + # *** new message + !E_IVLDIP + :E Invalid IP number: %s + :T µL®Ä IP ¦a§}: %s¡@ + # *** new message + !E_IVLDMSK + :E Invalid netmask + :T µL®Ä¾B¸n¡@ + # *** new message + !F_POSTCONCMD + :E Post connnect command + :T ³s½u«á©R¥O¡@ + # *** new message + !F_POSTDISCONCMD + :E Post disconnect command + :T Â÷½u«á©R¥O¡@ + # *** new message + !F_DELIVERMAIL + :E Deliver to this domain + :T ¶Ç°e¦Ü³oºô°ì¡@ + # *** new message + !T_IPX + :E Ipx + # *** new message + !F_PPPIPXENABLE + :E Enable IPX over PPP + :T ¦b PPP ¤W±Ò°Ê IPX¡@ + # *** new message + !F_PPPIPXNETNUM + :E Network number + :T ºô¸ô¦a§}¡@ + # *** new message + !F_PPPIPXLOCALNUM + :E Local node number + :T ¥»¾÷¸`ÂI¦a§}¡@ + # *** new message + !F_PPPIPXREMOTENUM + :E Remote node number + :T »·µ{¸`ÂI¦a§}¡@ + # *** new message + !F_PPPIPXRIPSAP + :E Enable RIP and SAP routing + :T ±Ò°Ê RIP ¤Î SAP ¸ô¥Ñ¡@ + # *** new message + !F_PPPIPXNLSP + :E Enable NLSP routing + :T ±Ò°Ê NLSP ¸ô¥Ñ¡@ + # *** new message + !F_PPPIPXOPTIONS + :E Other ipx options + :T ¨ä¥¦ ipx ¿ï¶µ¡@ + # *** new message + !M_DEFPPP + :E Default PPP paramaters + :T ¹w³] PPP °Ñ¼Æ¡@ + # *** new message + !I_PPP233 + :E Using pppd 2.3.3 + :T ¨Ï¥Î pppd 2.3.3¡@ + # *** new message + !F_DNS1 + :E Primary dns + :T ¥D­n dns¡@ + # *** new message + !F_DNS2 + :E Secondary dns + :T ¦¸¯Å dns¡@ + # *** new message + !T_DEFDIALIN + :E Default PPP dialin parameters + :T ¹w³] PPP ¼·¤J°Ñ¼Æ¡@ + # *** new message + !I_DEFDIALIN + :E You control here the default PPP option.\n + +Those options apply to all PPP accounts\n + +unless overriden. + :T ¦b³o¸Ì±±¨î¹w³] PPP ¿ï¶µ.¡@\n + +°£¤F³QÂмg¥~, ³o¨Ç¿ï¶µ¹ï¡@\n + +©Ò¦³ PPP ±b¸¹§¡¾A¥Î.¡@ + # *** new message + !F_OURIP + :E Local IP number + :T ¥»¾÷ IP ¦a§}¡@ + # *** new message + !F_PROXYARP + :E Proxy Arp (fake remote on local net) + :T Proxy Arp (¦b¥»¾÷ºô¤WÄF»·µ{)¡@ + # *** new message + !T_MODIPUP + :E Modify ip-up/ip-down + :T ­×¥¿ ip-up/ip-down + # *** new message + !I_MODIPUP + :E The files /etc/ppp/ip-up and /etc/ppp/ip-down\n + +must be modified to support the pppdialin module\n + +\n + +The following lines must be added respectivly to\n + +each file:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Do you want to do it ? + :T /etc/ppp/ip-up ¤Î /etc/ppp/ip-down ÀÉ¥²»Ý\n¡@ + +­×¥¿¥H¤ä´© pppdialin ¼Ò²Õ\n¡@ + +\n¡@ + +¥H¤U´X¦æ¥²»Ý¦bÀɮפ¤¤À§O¥[¤W\n¡@ + +\n¡@ + +ip-up :/usr/lib/linuxconf/lib/ppppostlogin $*\n¡@ + +ip-down: /usr/lib/linuxconf/lib/pppostlogout $*\n¡@ + +\n¡@ + +§A¬O§_»Ý­n³o¼Ë°µ?¡@ + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/rarp.dic linuxconf-1.15/messages/bg5/rarp.dic *** linuxconf-1.14r4/messages/bg5/rarp.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/rarp.dic Tue Apr 13 04:15:12 1999 *************** *** 0 **** --- 1,91 ---- + @version 0 + # *** new message + !M_rarp + :E RARP service + :T RARP ªA°È¡@ + # *** new message + !T_USAGE + :E Module rarp\n\n No command line option\n + :T ¼Ò²Õ rarp¡@\n\n ¨S¦³©R¥O¦æ¿ï¶µ¡@\n + # *** new message + !E_IVLDRARPFORM + :E Invalid format in file %s, line %d + :T ÀÉ®× %s,²Ä %d ¦æµL®Ä¼Ò¦¡¡@ + # *** new message + !E_ALLFIELD + :E All field must be filled + :T ©Ò¦³Äæ¦ì§¡»Ý¶ñ¼g¡@ + # *** new message + !E_HARDETH + :E Invalid hardware ethernet address\n%s\nExpect xx:xx:xx:xx:xx:xx format + :T µL®Ä¥H¤Óµw¥ó¦a§}¡@\n%s\n´Á«Ý xx:xx:xx:xx:xx:xx ¼Ò¦¡¡@ + # *** new message + !F_RARPACTIVE + :E This record is active + :T ³o°O¿ý¬O¹B¦æ¤¤¡@ + # *** new message + !F_HOSTNAME + :E host name or IP number + :T ¥D¾÷©Î IP ¦a§}¡@ + # *** new message + !F_ETHADR + :E Ethernet address + :T ¥H¤Óºô¦a§}¡@ + # *** new message + !T_ETH2IP + :E Ethernet to IP translation + :T ¥H¤Óºô¦Ü IP ÂàĶ¡@ + # *** new message + !I_ETH2IP + :E Enter an IP number or a host name\n + +and its ethernet 6 hexadecimal digit\n + +address + :T ¿é¤J¤@ IP ¦a§}©Î¥D¾÷¦W¡@\n + +©M¥¦ªº¥H¤Óºôªº 6 ­Ó¤Q¤»¶i¼Æ¦r¡@\n + +¦a§}¡@ + # *** new message + !H_RARPLIST + :E Host or IP\tMAC address\tActive\tComment + :T ¥D¾÷©ÎIP¡@\tMAC ¦a§}¡@\t¹B¦æ¤¤¡@\t³Æµù¡@ + # *** new message + !I_ANEWENTRY + :E Select [Add] to add a new entry + :T ¿ï [·s¼W] ·s¼W¤@·s¶µ¥Ø¡@ + # *** new message + !T_RARPCONF + :E RARP configuration + :T RARP ³]©w¡@ + # *** new message + !I_RARPCONF + :E You are allowed to edit/add\n + +RARP (Reverse Address Resolution)\n + +which will allow other computer to get\n + +their IP number from this server\n + :T §A¥i¥H½s¿è/·s¼W¡@\n + +RARP (¤Ï¦V¦a§}§P©w)¡@\n + +³o¥i¥O¨ä¥¦¹q¸£¥Ñ³o¡@\n + +¦øªA¾¹Àò¨ú IP ¦a§}¡@\n + # *** new message + !P_EDITRARP + :E to edit RARP configuration + :T ½s¿è RARP ³]©w¡@ + # *** new message + !P_UPDRARP + :E to install RARP entry + :T ¦w¸Ë RARP ¶µ¥Ø¡@ + # *** new message + !E_NORARP + :E This kernel does not support RARP\n + +I can't load the RARP table\n + +Some machines may fail to boot because of that + :T ³o®Ö¤ß¤£¤ä´© RARP¡@\n + +§Ú¤£¯à¸ü¤J RARP ªí®æ¡@\n + +¥Ñ¦¹¬Y¨Ç¾÷¾¹¤£¯à°_°Ê¡@ + # *** new message + !F_COMMENT + :E Comment + :T ³Æµù¡@ + # *** new message + !S_RARP + :E Setting RARP service + :T ³]©w RARP ªA°È¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/redhat.dic linuxconf-1.15/messages/bg5/redhat.dic *** linuxconf-1.14r4/messages/bg5/redhat.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/redhat.dic Tue Apr 13 04:15:13 1999 *************** *** 0 **** --- 1,57 ---- + @version 0 + # *** new message + !T_USAGE + :E redhat usage\n\nredhat --option ...\n + :T redhat »yªk\n\nredhat --option ...\n + # *** new message + !I_REMOVING + :E Removing device configuration: %s\n + :T ²¾°£³]³Æ³]©w: %s\n + # *** new message + !T_AUTHENTICATE + :E Authentication + :T Ų»{ + # *** new message + !I_AUTHREQ + :E Authentication required\nfor user %s + :T ¥Î¤á %s \n»Ý­nŲ»{ + # *** new message + !T_NEWPASS + :E Changing password + :T ÂàÅܱK½X + # *** new message + !I_NEWPASS + :E Changing the password for user %s + :T ¥Î¤á %s ÂàÅܱK½X + # *** new message + !I_DISABLED + :E The account was disabled\n + :T ³o±b¸¹¤£¯à±Ò°Ê\n + # *** new message + !I_ENABLED + :E The account was enabled\n + :T ³o±b¸¹¤w±Ò°Ê\n + # *** new message + !N_WRONGVERSION + :E You have installed a Linuxconf version suited for\n + +RedHat 4.x on a RedHat 5.x system.\n + +Things will operate normally, except for the following\n + +shortcomings:\n + + -PAM won't be used for user authentication and passwords\n + + updates.\n + + -Linuxconf will update the password database itself\n + + instead of relying on the useradd, userdel and usermod\n + + utilities.\n + +We suggest you install the proper version. You can \"upgrade\"\n + +by using the -U and --force rpm command line options. + :T §A¤w¦w¸Ë¤F¤@­Ó¾A¦X¦b RedHat 4.xªº\n + +Linuxconf ª©¥»¦ý¦b RedHat 5.x ¨t²Î¹B¦æ\n + +°£¥H¤U°ÝÃD¥~,¥¦¥i¥H¥¿±`¦a\n + +¹B¦æ:\n + + -PAM ¤£·|¥Î¨Ó§@¥Î¤áŲ»{©M\n + + ±K½X§ó·s.\n + + -Linuxconf ±N·|¦Û¦æ§ó·s±K½X\n + + ¸ê®Æ®w¥N´À¨Ï¥Î useradd, useradd,\n + + userdel ¤Î usermod ¤u¨ã\n + +§Ú´£Ä³§A¦w¸Ë¤@­Ó¾A¦Xª©¥». §A¥i¥H¨Ï¥Î\n + +-U ©M --force rpm ©R¥O¦æ¿ï§@ \"§ó·s\". diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/redhatppp.dic linuxconf-1.15/messages/bg5/redhatppp.dic *** linuxconf-1.14r4/messages/bg5/redhatppp.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/redhatppp.dic Tue Apr 13 04:15:13 1999 *************** *** 0 **** --- 1,294 ---- + @version 0 + # *** new message + !M_DIALOUT + :E PPP/SLIP/PLIP + # *** new message + !I_ADDBYLNX + :E Added by linuxconf + :T ¥Ñ linuxconf ¥[¤W¡@ + # *** new message + !E_IVLDIP + :E Invalid IP address or netmask + :T µL®Äªº IP ¦a§}©Î¾B¸n¡@ + # *** new message + !P_CONTROLPTP + :E Control point to point link + :T ±±¨î ÂI¦ÜÂI ³s½u¡@ + # *** new message + !T_PPPINTER + :E PPP interface + :T PPP ¤¶­±¡@ + # *** new message + !T_SLIPINTER + :E SLIP interface + :T SLIP ¤¶­±¡@ + # *** new message + !T_PLIPINTER + :E PLIP interface + :T PLIP ¤¶­±¡@ + # *** new message + !F_MODEMPORT + :E Modem port + :T Modem °ð¡@ + # *** new message + !T_HARDWARE + :E Hardware + :T µw¥ó¡@ + # *** new message + !I_HARDFLOWCTL + :E Use hardware flow control and modem lines + :T ¨Ï¥Î hardware flow control ©M ¼Æ¾Ú¾÷½u¡@ + # *** new message + !I_ESCAPECHARS + :E Escape control characters + :T ¶h¥X±±¨î¦r¤¸¡@ + # *** new message + !I_DEFABORT + :E Abort connection on well-known errors + :T ¦]©úÅã¿ù»~, °±¤î³s½u¡@ + # *** new message + !I_USERCTL + :E Allow any user (de)activate the interface + :T ­ã³\\¥ô¦ó¥Î¤á (¤£)±Ò°Ê¤¶­±¡@ + # *** new message + !F_LINESPEED + :E Line speed + :T ½u¸ô³t«×¡@ + # *** new message + !F_PPPOPTIONS + :E PPP options + :T PPP ¿ï¶µ¡@ + # *** new message + !T_COMMS + :E Communication + :T ³q°T¡@ + # *** new message + !F_MODEMINIT + :E Modem init string + :T Modem °_©l¦r¦ê¡@ + # *** new message + !F_MODEMDIAL + :E Modem dial command + :T Modem ¼·¸¹©R¥O¡@ + # *** new message + !F_PHONE + :E Phone number + :T ¹q¸Ü¸¹½X¡@ + # *** new message + !I_DEBUGCON + :E Debug connection + :T °£¿ù³s½u¡@ + # *** new message + !T_CHAT + :E Chat + :T ¥æ½Í¡@ + # *** new message + !F_EXPECT + :E Expect + :T ´Á«Ý¡@ + # *** new message + !F_SEND + :E Send + :T °e¥X¡@ + # *** new message + !T_NETWORKING + :E Networking + :T ºô¸ô¡@ + # *** new message + !I_ONBOOT + :E Activate interface at boot time + :T ¦b°_¾÷®É±Ò°Ê¤¶­±¡@ + # *** new message + !I_DEFROUTE + :E Set default route + :T ³]©w¹w³]¸ô¥Ñ¡@ + # *** new message + !I_PERSIST + :E restart link when connection fails + :T ·í³s½u¥¢±Ñ«á­«·s³s±µ¡@ + # *** new message + !T_TIMEOUT + :E Timeout values in seconds + :T ¹O®É¼Æ­È(¬í)¡@ + # *** new message + !F_NOCON + :E No connection + :T ¨S¦³³s½u¡@ + # *** new message + !F_BROKENCON + :E Broken connection + :T ¶¡Â_³s½u¡@ + # *** new message + !T_MAXPACKET + :E Maximum package size + :T ³Ì¤j®M¥ó¤j¤p¡@ + # *** new message + !F_MRU + :E MRU (296-1500) + # *** new message + !F_MTU + :E MTU (296-1500) + # *** new message + !T_INFREQUENT + :E Infrequently-used options + :T ¤£±`¥Î¿ï¶µ¡@ + # *** new message + !F_LOCALIP + :E Local IP address + :T ¥»¾÷ IP ¦a§}¡@ + # *** new message + !F_REMOTEIP + :E Remote IP address + :T »·µ{ IP ¦a§}¡@ + # *** new message + !F_NETMASK + :E Netmask + :T ¾B¸n¡@ + # *** new message + !F_MODE + :E Mode + :T ¼Ò¦¡¡@ + # *** new message + !T_PAP + :E PAP + # *** new message + !F_PAPNAME + :E Username + :T ¥Î¤á¦W¡@ + # *** new message + !F_SECRET + :E Secret + :T «O±K¡@ + # *** new message + !B_CONNECT + :E Connect + :T ³s½u¡@ + # *** new message + !X_CONNECT + :E Connect + :T ³s½u¡@ + # *** new message + !B_DISCONNECT + :E disconnect + :T Â÷½u¡@ + # *** new message + !X_DISCONNECT + :E Disconnect + :T Â÷½u¡@ + # *** new message + !E_MRU + :E Invalid MRU value + :T µL®Ä MRU ¼Æ­È¡@ + # *** new message + !E_MTU + :E Invalid MTU value + :T µL®Ä MTU ¼Æ­È¡@ + # *** new message + !E_DISCON + :E Invalid disconnect timeout value + :T µL®ÄÂ÷½u¹O®É¼Æ­È¡@ + # *** new message + !E_SECRET + :E You must provide a secret password\nif you provide a PAP user name + :T ¦p§A´£¨Ñ PAP ¥Î¤á¦W¡@\n§A¥²»Ý´£¨Ñ¤@«O±K±K½X¡@ + # *** new message + !I_USEPAP + :E Use PAP authentication + :T ¨Ï¥Î PAP Ų»{¡@ + # *** new message + !F_LOGIN + :E Login name + :T µn¿ý¦W¦r¡@ + # *** new message + !F_PASSWORD + :E Password + :T ±K½X¡@ + # *** new message + !B_CUSTOMIZE + :E Customize + :T ¦Û³]¡@ + # *** new message + !X_CUSTOMIZE + :E Customize + :T ¦Û³]¡@ + # *** new message + !R_PPP + :E PPP + # *** new message + !R_SLIP + :E SLIP + # *** new message + !R_PLIP + :E PLIP + # *** new message + !T_DEVTYPE + :E Type of interface + :T ¤¶­±ºØÃþ¡@ + # *** new message + !P_EDITDIALOUT + :E edit dialout configurations + :T ½s¿è¼·¸¹³]©w¡@ + # *** new message + !T_CONFIGS + :E Configurations + :T ³]©w¡@ + # *** new message + !T_PPPSLIPCONF + :E PPP/Slip/Plip configurations + :T PPP/Slip/Plip ³]©w¡@ + # *** new message + !T_CONFIGSTATUS + :E Configuration\tStatus + :T ³]©w¡@\tª¬ºA¡@ + # *** new message + !I_CONNECTED + :E Connected + :T ¤w³s½u¡@ + # *** new message + !I_DIALING + :E Dialing + :T ¼·¸¹¡@ + # *** new message + !T_PPPCONCTRL + :E PPP/SLIP/PLIP connection control + :T PPP/SLIP/PLIP ³s½u±±¨î¡@ + # *** new message + !I_PPPCONCTRL + :E You are allowed to activate/deactivate\nPPP, SLIP and PLIP link\n + :T §A¥i¥H±Ò°Ê/¤£±Ò°Ê¡@\nPPP, SLIP ¤Î PLIP ³s½u¡@\n + # *** new message + !P_CTLDIALOUT + :E control dialout + :T ±±¨î¼·¸¹¡@ + # *** new message + !Q_DOCONN + :E Activate link + :T °_°Ê³s½u¡@ + # *** new message + !I_DOCONN + :E Do you want to activate the network link ? + :T §A§_­n±Ò°Êºô¸ô³s½u?¡@ + # *** new message + !Q_DODISCONN + :E Terminate link + :T °±¤î³s½u¡@ + # *** new message + !I_DODISCONN + :E Do you want to terminate the network link ? + :T §A¬O§_­n°±¤îºô¸ô³s½u?¡@ + # *** new message + !I_REMOVINGPTP + :E Removing point to point configuration: %s\n + :T ²¾°£ ÂI¦ÜÂI ³]©w: %s¡@\n + # *** new message + !M_dialout + :E PPP/SLIP/PLIP + # *** new message + !M_PPPCTRL + :E Control PPP/SLIP/PLIP links + :T ±±¨î PPP/SLIP/PLIP ³s½u¡@ + # *** new message + !T_USAGE + :E Module redhatppp\n\n No command line option\n + :T ¼Ò²Õ redhatppp\n\n ¨S¦³©R¥O¦æ¿ï¶µ¡@\n + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/samba.dic linuxconf-1.15/messages/bg5/samba.dic *** linuxconf-1.14r4/messages/bg5/samba.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/samba.dic Tue Apr 13 04:15:14 1999 *************** *** 0 **** --- 1,249 ---- + @version 0 + # *** new message + !M_SAMBA + :E Samba file server + :T Samba ÀɮצøªA¾¹¡@ + # *** new message + !T_PRIVISAMBA + :E Samba administration + :T Samba ºÞ²z¡@ + # *** new message + !T_SERVICES + :E 1-Services + :T 1-ªA°È¡@ + # *** new message + !F_SHARENAME + :E Share name + :T ¦@¨É¦WºÙ¡@ + # *** new message + !T_SHARE + :E Share setup + :T ¤À¨É°t¸m¡@ + # *** new message + !I_SHARE + :E You are allowed to enter configurations\nfor one disk share\n + :T §A¥i¥H¿é¤J¹ï¤@­ÓºÏ½L¡@\nªº¦@¨É³]©w¡@ + # *** new message + !H_SHARES + :E Share name\tDescription + :T ¦@¨É¦WºÙ¡@\t»¡©ú¡@ + # *** new message + !I_NEWSHARE + :E Select [Add] to add a new disk share + :T ¿ï [·s¼W] ·s¼W¤@ºÏ½L¦@¨É¡@ + # *** new message + !T_SHARES + :E Disk shares + :T ºÏ½L¦@¨É¡@ + # *** new message + !I_SHARES + :E You can define multiple independant entry\npoints in your file server + :T §A¥i¥H¹ï§AªºÀɮצøªA¾¹¡@\n§@¦h­«¿W¥ß¿é¤JÂI¡@ + # *** new message + !F_COMMENT + :E Comment/description + :T ³Æµù/»¡©ú¡@ + # *** new message + !F_PUBLIC + :E Public access + :T ¦@¥Î¦s¨ú¡@ + # *** new message + !F_WRITABLE + :E Writable + :T ¥i¼g¤J¡@ + # *** new message + !F_WRITELIST + :E Write list + :T ¼g¤J¦Cªí¡@ + # *** new message + !M_DEFAULT + :E Defaults + :T ¹w³]¡@ + # *** new message + !M_HOMES + :E Default setup for users's home + :T ¥Î¤áªº®a(users's home)¹w³]³]©w¡@ + # *** new message + !M_PRINTERS + :E Default setup for printers + :T ¦Lªí¾÷¹w³]³]©w¡@ + # *** new message + !T_SAMBA + :E Samba administration + :T Samba ºÞ²z¡@ + # *** new message + !I_SAMBA + :E This menu allows to configure the Samba SMB file server + :T ³oµæ³æ¥iÅý§A³]©w Samba SMB ÀɮצøªA¾¹¡@ + # *** new message + !M_SHARES + :E Disk shares + :T ºÏ½L¦@¨É¡@ + # *** new message + !F_PREEXEC + :E Setup command + :T ³]©w©R¥O¡@ + # *** new message + !F_ROOTPREEXEC + :E Setup command (root) + :T ³]©w©R¥O (root)¡@ + # *** new message + !F_POSTEXEC + :E Cleanup command + :T ²M°£©R¥O¡@ + # *** new message + !F_ROOTPOSTEXEC + :E Cleanup command (root) + :T ²M°£©R¥O (root)¡@ + # *** new message + !F_FORCEUSER + :E Force user + :T ±j¨î¥Î¤á¡@ + # *** new message + !F_FORCEGROUP + :E Force group + :T ±j¨î¸s²Õ¡@ + # *** new message + !F_BROWSEABLE + :E Browsable + :T ¥iÂsÄý¡@ + # *** new message + !F_GUESTACCOUNT + :E Guest account + :T «È¤á±b¸¹¡@ + # *** new message + !F_ENGRYPTPASS + :E Encrypted password required + :T »Ý­n¥[±K±K½X¡@ + # *** new message + !F_PATH + :E Directory to export + :T ¥i¿é¥Xªº¥Ø¿ý¡@ + # *** new message + !F_PASSSERVER + :E Password server + :T ±K½X¦øªA¾¹¡@ + # *** new message + !F_PASSLEVEL + :E Password level + :T ±K½Xµ¥¯Å¡@ + # *** new message + !F_PASSPROG + :E Passwd program + :T ±K½Xµ{¦¡¡@ + # *** new message + !F_PREFMASTER + :E Preferred master + :T Àu¿ï master¡@ + # *** new message + !F_OSLEVEL + :E OS level + :T OS µ¥¯Å¡@ + # *** new message + !F_NULLPASSWORDS + :E Allow null passwords account + :T ¥i¥H¥ÎªÅ±K½X±b¸¹¡@ + # *** new message + !F_ENABLE + :E This share is enabled + :T ³o¦@¨É¬O¥i±Ò°Ê¡@ + # *** new message + !F_INHERIT + :E Inherit settings from share + :T ¥Ñ¦@¨ÉÄ~©Ó³]©w¡@ + # *** new message + !F_GUESTONLY + :E Guest access only + :T ¥u­­«È¤H¦s¨ú¡@ + # *** new message + !F_ADMINUSERS + :E Admin users + :T ºÞ²z¥Î¤á¡@ + # *** new message + !F_ALLOWHOSTS + :E Allow hosts + :T ®e³\\¥D¾÷¡@ + # *** new message + !F_DENYHOSTS + :E Deny hosts + :T ©Úµ´¥D¾÷¡@ + # *** new message + !F_DONTDESCEND + :E Don't descent + :T ¤Å¤U­°¡@ + # *** new message + !F_GUESTACCOUNTSH + :E Guest account (this share) + :T «È¤H±b¸¹ (³o¦@¦ë)¡@ + # *** new message + !F_VALIDUSERS + :E Valid users + :T ¦³®Ä¥Î¤á¡@ + # *** new message + !F_IVLDUSERS + :E Invalid users + :T µL®Ä¥Î¤á¡@ + # *** new message + !F_MAGICSCRIPT + :E Magic script + :T ¤Û½Z¡@ + # *** new message + !F_MAGICOUTPUT + :E Magic output + :T ¤Û¿é¥X¡@ + # *** new message + !F_MAXCONNECT + :E Max. connections + :T ³Ì¤j³s±µ¡@ + # *** new message + !F_USERLIST + :E User list + :T ¥Î¤á¦Cªí¡@ + # *** new message + !F_READLIST + :E Read only user list + :T ¥u¥iŪ¥Î¤á¦Cªí¡@ + # *** new message + !F_ONLYUSER + :E Only user may connect + :T ¥u¦³¥Î¤á¥i³s±µ¡@ + # *** new message + !F_DEADTIME + :E Dead time + :T ªÅÀɮɶ¡¡@ + # *** new message + !F_DBGLEVEL + :E Debug level + :T °£¿ùµ¥¯Å¡@ + # *** new message + !F_DEFSERVICE + :E Default service + :T ¹w³]ªA°È¡@ + # *** new message + !F_DOMMASTER + :E Domain master + :T ºô°ì¥D¤H¡@ + # *** new message + !F_REMANNOUNCE + :E Remote announce + :T »·µ{µo§G¡@ + # *** new message + !F_LOADPRINTERS + :E Show all available printers + :T ¦C¥X©Ò¦³¥i¥Î¦Lªí¾÷¡@ + # *** new message + !F_MSGCOMMAND + :E WinPopup command + :T WinPopup ©R¥O¡@ + # *** new message + !F_SYNCPASS + :E Synchronise linux and SMB passwords + :T linux ©M SMB ±K½X¦P¨B¡@ + # *** new message + !F_WORKGROUP + :E Work group + :T ¤u§@²Õ¡@ + # *** new message + !F_SERVERDESC + :E Server description + :T ¦øªA¾¹»¡©ú¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/squid.dic linuxconf-1.15/messages/bg5/squid.dic *** linuxconf-1.14r4/messages/bg5/squid.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/squid.dic Tue Apr 13 04:15:14 1999 *************** *** 0 **** --- 1,65 ---- + @version 0 + # *** new message + !M_squid + :E Squid (http proxy + cache) + :T Squid (http ¥N²z + §Ö¨ú)¡@ + # *** new message + !T_USAGE + :E Module squid\n\n No command line option\n + :T ¼Ò²Õ squid¡@\n\n ¨S¦³©R¥O¦æ¿ï¶µ¡@\n + # *** new message + !F_HTTPPORT + :E Http port + :T Http °ð¡@ + # *** new message + !F_CACHESIZE + :E Disk cache size (meg) + :T ºÏºÐ§Ö¦s¤j¤p (meg)¡@ + # *** new message + !F_CACHEMEM + :E Ram cache size (meg) + :T Ram §Ö¦s¤j¤p (meg)¡@ + # *** new message + !T_SQUIDDEF + :E Squid defaults + :T Squid ¹w³]¡@ + # *** new message + !I_SQUIDDEF + :E You set here the basic operational parameters + :T §A¥i¥H¦b¦¹³]©w°ò¥»¤u§@°Ñ¼Æ¡@ + # *** new message + !M_DEFAULT + :E Defaults + :T ¹w³]¡@ + # *** new message + !M_ACL + :E Access control + :T ¦s¨ú±±¨î¡@ + # *** new message + !T_SQUID + :E Squid administration + :T Squid ºÞ²z¡@ + # *** new message + !I_SQUID + :E This menu allows to configure the Squid proxy server + :T ³oµæ³æ¥i¥HÅý§A³]©w Squid ¥N²z¦øªA¾¹¡@ + # *** new message + !F_TRANSPAR + :E Enable transparent proxying + :T ±Ò°Ê³z©ú¥N²z¡@ + # *** new message + !F_ACCELPROXY + :E Accelarator mode + proxy + :T ¥[³t¾¹¼Ò¦¡ + ¥N²z¡@ + # *** new message + !F_REALHOST + :E Accelator for host + :T ¥D¾÷¥[³t¾¹¡@ + # *** new message + !F_REALPORT + :E On port + :T ¦b°ð¡@ + # *** new message + !E_TRANSACCEL + :E Can't be both a transparent proxy\nand an accelerator + :T ¤£¯à¦P®É¬°³z©ú¥N²z¾¹¡@\n©M¥[³t¾¹¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/status.dic linuxconf-1.15/messages/bg5/status.dic *** linuxconf-1.14r4/messages/bg5/status.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/status.dic Tue Apr 13 04:15:15 1999 *************** *** 0 **** --- 1,80 ---- + @version 0 + # *** new message + !M_status + :E Viewing system state + :T À˵ø¨t²Îª¬ºA¡@ + # *** new message + !M_REPORT + :E Prepare a report + :T ·Ç³Æ³ø§i¡@ + # *** new message + !M_MEMORY + :E memory usage(RAM) + :T °O¾Ð¥Î¶q (RAM)¡@ + # *** new message + !M_DISK + :E disk usage + :T ºÏºÐ¥Î¶q¡@ + # *** new message + !M_INTERFACE + :E network devices + :T ºô¸ô³]³Æ¡@ + # *** new message + !I_STATUS + :E You can view the current state of your computer.\n + +You can't modidy anything from here. + :T §A¥i¥HÀ˵ø¥Ø«e¹q¸£ª¬ºA.¡@\n + +§A¥i¥H¦b¦¹§ó§ï¥ô¦óªF¦è.¡@ + # *** new message + !T_USAGE + :E status usage\n\nstatus --option ...\n + :T status »yªk¡@\n\nstatus --option ...\n + # *** new message + !M_IPROUTING + :E IP routing table + :T IP ¸ô¥Ñªí¡@ + # *** new message + !M_IPXROUTING + :E IPX routing table + :T IPX ¸ô¥Ñªí¡@ + # *** new message + !E_CANTEXEC + :E Can't execute the command\n%s + :T ¤£¯à°õ¦æ©R¥O¡@\n%s + # *** new message + !T_STATUS + :E System status + :T ¨t²Îª¬ºA¡@ + # *** new message + !M_SYSINFO + :E System information + :T ¨t²Î¸ê®Æ¡@ + # *** new message + !M_PROCESSES + :E processes + :T ¶iµ{¡@ + # *** new message + !I_OUTPUT + :E Output of command + :T ©R¥O¿é¥X¡@ + # *** new message + !I_FILE + :E File + :T Àɮס@ + # *** new message + !M_INTERRUPTS + :E interrupts mapping + :T ¤¤Â_¬M®g¡@ + # *** new message + !M_IOPORTS + :E I/O port mapping + :T I/O °ð¬M®g¡@ + # *** new message + !E_NOTDONE + :E Not done yet! + :T ÁÙ¥¼§¹¦¨!¡@ + # *** new message + !M_MD + :E RAID (MD) usage + :T RAID (MD) ¥Îªk¡@ + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/suse.dic linuxconf-1.15/messages/bg5/suse.dic *** linuxconf-1.14r4/messages/bg5/suse.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/suse.dic Tue Apr 13 04:15:16 1999 *************** *** 0 **** --- 1,5 ---- + @version 0 + # *** new message + !T_USAGE + :E suse usage\n\nsuse --option ...\n + :T suse »yªk¡@\n\nsuse --option ... \n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/treemenu.dic linuxconf-1.15/messages/bg5/treemenu.dic *** linuxconf-1.14r4/messages/bg5/treemenu.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/treemenu.dic Tue Apr 13 04:15:16 1999 *************** *** 0 **** --- 1,21 ---- + @version 0 + # *** new message + !T_USAGE + :E treemenu usage\n\ntreemenu --option ...\n + :T µæ³æ¾ð ¨Ï¥Î\n\ntreemenu --option ...¡@\n + # *** new message + !B_QUIT + :E Quit + :T Â÷¶}¡@ + # *** new message + !B_ACTIVATE + :E Act/Changes + :T ±Ò°Ê/§ó§ï¡@ + # *** new message + !N_NOJOB + :E Nothing to do! + :T ¨S¨Æ¥i°µ!¡@ + # *** new message + !B_HELP + :E Help + :T »¡©ú¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/userconf.dic linuxconf-1.15/messages/bg5/userconf.dic *** linuxconf-1.14r4/messages/bg5/userconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/userconf.dic Tue Apr 13 04:15:17 1999 *************** *** 0 **** --- 1,1078 ---- + @version 0 + # *** new message + !E_GROUPEXIST + :E Group already exist\n + :T ¸s²Õ¤w¦s¦b¡@\n + # *** new message + !E_GROUPEXISTID + :E Group already exist (Group ID)\n + :T ¸s²Õ¤w¦s¦b (¸s²Õ ID)¡@\n + # *** new message + !E_UNKNOWNMEMBER + :E Unknown member user + :T ¤£©ú¥Î¤á¦¨­û¡@ + # *** new message + !F_GROUPNAME + :E Group name + :T ¸s²Õ¦WºÙ¡@ + # *** new message + !F_GROUPID + :E Group ID + :T ¸s²Õ ID¡@ + # *** new message + !F_ALTMEM + :E Alternate members(opt) + :T ¨ä¥¦¦¨­û(¿ï¶µ)¡@ + # *** new message + !T_GROUPSPEC + :E Group specification + :T ¸s²Õ³W®æ¡@ + # *** new message + !INTRO_GROUPSPEC + :E You must specify at least the name\n + :T §A³Ì¤Ö­n´£¨Ñ¦W¦r¡@\n + # *** new message + !P_GROUPDB + :E to maintain the group database + :T ºûÅ@¸s²Õ¸ê®Æ®w¡@ + # *** new message + !T_GROUPS + :E User groups + :T ¥Î¤á¸s²Õ¡@ + # *** new message + !I_GROUPS + :E You can edit, add, or delete groups + :T §A¥i¥H½s¿è,·s¼W, ©Î§R°£¸s²Õ¡@ + # *** new message + !I_TOADD + :E Select [Add] to add a new definition + :T ¿ï [·s¼W] ·s¼W¤@·s©w¸q¡@ + # *** new message + !I_GROUPCREATE + :E The group %s does not exist on your\n + +system. It is needed to %s\n + +\n + +Do you want to create it ? (why not) + :T ¸s²Õ %s ¦b³o¨t²Î¤£¦s¦b¡@\n + +³o»Ý­n %s¡@\n + +\n + +§A¬O§_»Ý­n«Ø¥ß? (¬°¦ó¤£°µ)¡@ + # *** new message + !Q_GROUPCREATE + :E Mandatory group creation + :T ±j­¢¸s²Õ«Ø¥ß¡@ + # *** new message + !P_PASSPOLICIES + :E set the password and account policies + :T °t¸m±K½X©M±b¸¹­ì«h¡@ + # *** new message + !F_MINLEN + :E Minimum length + :T ³Ì¤pªø«×¡@ + # *** new message + !F_MINCHARS + :E Minimum amount of non alpha char + :T ³Ì¤p ¤£¬O¦r¥Àªº¼Æ¶q¡@ + # *** new message + !T_PASSPOLICIES + :E Password/Account setting policies + :T ±K½X/±b¤á³]©w­ì«h¡@ + # *** new message + !I_PASSPOLICIES + :E You must enter here the validation rules\n + +for password. Once setup, a user (or you) won't\n + +be able to change a password to one that does not\n + +fullfill this requirements\n + :T §A¥²»Ý¦b¦¹¿é¤J±K½X¥Í®Ä³W«h¡@\n + +«Ø¥ß«á, ¤@¥Î¤á (©Î§A¦Û¤v) ¤£¡@\n + +¯àÂà´«¤@¤£²Å³o­n¨Dªº¡@\n + +±K½X¡@\n + # *** new message + !E_NOROOT + :E No root user in /etc/passwd\nBetter to let you in + :T ¦b /etc/passwd ¨S¦³ root ¥Î¤á¡@\nÁÙ¬Oµ¹§A¶i¤J¡@ + # *** new message + !T_PASSREQ + :E Password required + :T »Ý­n±K½X¡@ + # *** new message + !I_ENTERPASS + :E Enter password for root\n + +Only the superuser is allowed to perform\n + +configuration task. + :T ¿é¤J root ±K½X¡@\n + +¥u¦³¶W¥Î¤á¤~¥i¶i¦æ¡@\n + +³]©w¤u§@.¡@ + # *** new message + !E_IVLDPASS + :E Invalid password + :T µL®Ä±K½X¡@ + # *** new message + !E_MUSTBEROOT + :E You must be root to\n%s + :T §A¤@©w­n root ¤~¥i¡@\n%s + # *** new message + !E_DUPLOGIN + :E User %s already exist (same login name)\n + :T ¥Î¤á %s ¤w¦s¦b (¬Û¦Pµn¤J¦W)¡@\n + # *** new message + !E_DUPID + :E User already exist (User ID)\n + :T ¥Î¤á¤w¦s¦b (¥Î¤á ID)¡@\n + # *** new message + !E_UNKNOWNGRP + :E Group do not exist\n + :T ¸s²Õ¤£¦s¦b¡@\n + # *** new message + !E_IVLDSHELL + :E Invalid command interpreter\n + :T µL®Ä©R¥Oª½Ä¶µ{¦¡¡@\n + # *** new message + !E_NOSHELL + :E Command interpreter not available\n + :T ©R¥Oª½Ä¶µ{¦¡¤£¥i¥Î¡@\n + # *** new message + !E_NOHOME + :E No home directory specified + :T ¨S¦³«ü©ú home ¥Ø¿ý¡@ + # *** new message + !N_IS_OK + :E is ok + :T ¤w½T©w¡@ + # *** new message + !E_IVLDGRP + :E have invalid group + :T ¦³µL®Ä¸s²Õ¡@ + # *** new message + !E_IVLDOWN + :E have invalid owner + :T ¦³µL®Ä¾Ö¦³¤H¡@ + # *** new message + !E_IVLDG_O + :E have invalid owner and group + :T ¦³µL®Ä¾Ö¦³¤H©M¸s²Õ¡@ + # *** new message + !E_EXISTDIR + :E do exist, but is not a directory + :T ¦s¦b, ¦ý¤£¬O¤@¥Ø¿ý¡@ + # *** new message + !E_DONOTEXIST + :E does not exist + :T ¤£¦s¦b¡@ + # *** new message + !E_HOMEUSER + :E Home directory of user %s: %s\n %s\n + :T ¥Î¤á %s ªº Home ¥Ø¿ý: %s¡@\n %s\n + # *** new message + !P_SETUSERDIR + :E set user %s directory\n + :T °t¸m¥Î¤á %s ¥Ø¿ý¡@\n + # *** new message + !E_SETUPDIR + :E Can't setup user %s's home directory %s\nreason: %s\n + :T ¤£¯à°t¸m¥Î¤á %s ªº home ¥Ø¿ý %s¡@\n­ì¦]: %s¡@\n + # *** new message + !F_LOGIN + :E Login name + :T µn¤J¦W¦r¡@ + # *** new message + !F_FULLNAME + :E Full name + :T ¥þ¦W¡@ + # *** new message + !F_GROUP + :E group + :T ¸s²Õ¡@ + # *** new message + !F_HOME + :E Home directory(opt) + :T Home ¥Ø¿ý(¿ï¶µ)¡@ + # *** new message + !F_SHELL + :E Command interpreter(opt) + :T ©R¥Oª½Ä¶µ{¦¡(¿ï¶µ)¡@ + # *** new message + !F_UID + :E User ID(opt) + :T ¥Î¤á ID(¿ï¶µ)¡@ + # *** new message + !T_USERINFO + :E User information + :T ¥Î¤á¸ê®Æ¡@ + # *** new message + !I_USERINTRO + :E You must specify at least the name\nand the full name + :T §A¥²»Ý³Ì¤p«ü©ú¦W¦r¡@\n©M¥þ¦W¡@ + # *** new message + !P_USERDATA + :E to maintain the user database + :T ºûΤá¸ê®Æ®w¡@ + # *** new message + !E_NO2PT + :E No : in any field allowed + :T No : ¦b¥ô¦óÄæ¦ì§¡¥i¡@ + # *** new message + !Q_CREATE + :E \nDo you want to create it ? + :T \n§A¬O§_­n«Ø¥ß?¡@ + # *** new message + !Q_FIXIT + :E \nDo you want to fix it ? + :T \n§A¬O§_­n­×¥¿?¡@ + # *** new message + !Q_USERHOME + :E User home directory + :T ¥Î¤á home ¥Ø¿ý¡@ + # *** new message + !E_NULLPASS + :E Empty password not allowed.\n + +Only root is allowed to do so.\n + +This is not a good idea though! + :T ¤£¥iªÅ¥Õ±K½X.¡@\n + +¥u¦³ root ¤~¥i.¡@\n + +¦ý¤£´£Ä³³o¼Ë!¡@ + # *** new message + !E_WEAKPASS + :E Password not accepted\n + +Select a more complicated one\n + +The local policies are\n + +\n + +Minimum length : %d\n + +Minimum number of non-alpha character : %d\n + :T ¤£±µ¨ü±K½X¡@\n + +½Ð¿ï¥t¤@¸û½ÆÂøªº¡@\n + +¥»¾÷ªº­ì«h¬O¡@\n + +\n + +³Ì¤pªø«×: %d¡@\n + +³Ì¤p¤£¬O¦r¥À¦r²Åªº¼Æ¶q : %d¡@\n + # *** new message + !F_PASSWORD + :E Password + :T ±K½X¡@ + # *** new message + !F_CONFIRM + :E Confirmation + :T ½T»{¡@ + # *** new message + !T_PASSWORD + :E %s's password + :T %s ªº±K½X¡@ + # *** new message + !I_PASSINTRO + :E You must enter the new password twice\n + +To make sure you have enter it\n + +correctly.\n + :T §A¥²»Ý¿é¤J±K½X¨â¦¸¡@\n + +½Ð½T©w§A¤w¡@\n + +¥¿½T¦a¿é¤J.¡@\n + # *** new message + !E_MISMATCH + :E The two new passwords differ\nPlease try again\n + :T ³o¨â­Ó±K½X¤£¦P¡@\n½Ð¦A¸Õ¡@\n + # *** new message + !N_ACCEPT + :E New password for user %s accepted + :T user %s ªº·s±K½X¤w±µ¨ü¡@ + # *** new message + !T_CHGYOURPASS + :E Changing your password + :T Âà´«§Aªº±K½X¡@ + # *** new message + !I_ENTERYOURPASS + :E Please enter your current password + :T ½Ð¿é¤J§A²{¦bªº±K½X¡@ + # *** new message + !M_USER + :E User accounts + :T ¥Î¤á±b¸¹¡@ + # *** new message + !M_GROUPDEF + :E Group definitions + :T ¸s²Õ©w¸q¡@ + # *** new message + !M_ROOTPASS + :E Change root password + :T Âà´« root ±K½X¡@ + # *** new message + !M_PPP + :E PPP accounts + :T PPP ±b¸¹¡@ + # *** new message + !M_SLIP + :E SLIP accounts via normal login + :T ¸g¥¿±`µn¤Jªº SLIP ±b¸¹¡@ + # *** new message + !M_UUCP + :E UUCP accounts + :T UUCP ±b¸¹¡@ + # *** new message + !M_POP + :E POP accounts (mail only) + :T POP ±b¸¹ (¥u­­¹q¶l)¡@ + # *** new message + !M_POLICIES + :E Password & account policies + :T ±K½X¤Î±b¸¹ ­ì«h¡@ + # *** new message + !T_UCONF + :E User account configurator + :T ¥Î¤á±b¸¹³]©w¡@ + # *** new message + !I_UCONFINTRO + :E This package allows you to add/delete\nand manage user accounts\n + :T ³o®M¥ó¥iÅý§A ·s¼W/§R°£\n©MºÞ²z¥Î¤á±b¸¹¡@\n + # *** new message + !P_POP + :E setup POP account + :T ³]©w POP ±b¸¹¡@ + # *** new message + !P_PPP + :E setup PPP account + :T ³]©w PPP ±b¸¹¡@ + # *** new message + !P_SLIP + :E setup SLIP account + :T ³]©w SLIP¡@±b¸¹¡@ + # *** new message + !P_UUCP + :E setup UUCP account + :T ³]©w UUCP ±b¸¹¡@ + # *** new message + !P_CHGPASS + :E change users password + :T Âà´«¥Î¤á±K½X¡@ + # *** new message + !E_NOUID + :E Can't locate entry for uid %d\nin %s + :T §ä¤£¨ì uid %d ³o¶µ¡@\n(¦b %s ¤¤) + # *** new message + !E_UNKNOWNUSER + :E Unknown user %s\n + :T ¤£©ú¥Î¤á %s¡@\n + # *** new message + !T_USERACCT + :E Users accounts + :T ¥Î¤á±b¸¹¡@ + # *** new message + !I_CANEDIT + :E You can edit, add, or delete users + :T §A¥i¥H½s¿è, ·s¼W, ©Î§R°£¥Î¤á¡@ + # *** new message + !I_SELECT + :E You must select one of those users + :T §A¥²»Ý±q³o¨Ç¥Î¤á¤¤¿ï¤@¡@ + # *** new message + !P_USERDB + :E to maintain the user database + :T ºûÅ@¥Î¤á¸ê®Æ®w¡@ + # *** new message + !I_USERCREATE + :E User account %s does not exist\nDo you want to create it + :T ¥Î¤á±b¸¹ %s ¤£¦s¦b¡@\n§A¬O§_­n«Ø¥ß¡@ + # *** new message + !Q_USERCREATE + :E Account creation + :T ±b¸¹«Ø¥ß¡@ + # *** new message + !W_CHGPASS + :E Changing password for %s\n + :T %s Âà´«±K½X¡@ + # *** new message + !Q_ENTEROLDPASS + :E Enter old password: + :T ¿é¤J±K½X¡@ + # *** new message + !Q_ENTERNEWPASS + :E Enter new password: + :T ¿é¤J·s±K½X¡@ + # *** new message + !Q_RETYPE + :E Re-type new password: + :T ­«¤J·s±K½X¡@ + # *** new message + !Q_DELGROUP + :E Confirm deletion of group definition + :T ½T©w¸s²Õ©w¸q§R°£¡@ + # *** new message + !T_PASSMNG + :E Password management + :T ±K½XºÞ²z¡@ + # *** new message + !F_PASSMAY + :E Must keep # days + :T ¥²»Ý«O¦s # ¤é¡@ + # *** new message + !F_PASSMUST + :E Must change after # days + :T ¥²»Ý¦b # ¤é«áÂà´«¡@ + # *** new message + !F_PASSWARN + :E Warn # days before expiration + :T ¦b¨ì´Á¤é«eĵ§i # ¤é¡@ + # *** new message + !F_PASSEXPIRE + :E Account expire after # days + :T ¦b # ¤é«á±b¸¹¨ì´Á¡@ + # *** new message + !B_PASSWD + :E Passwd + :T ±K½X¡@ + # *** new message + !T_PRIVILEGES + :E Privileges + :T ¯SÅv¡@ + # *** new message + !E_NOUSER + :E No user %s in /etc/passwd\nprivilege denied + :T ¦b /etc/passwd ¤¤¨S¦³¥Î¤á %s¡@\n¯SÅv©Úµ´¡@ + # *** new message + !F_ROOTPASS + :E root password + :T root ±K½X¡@ + # *** new message + !F_YOURPASS + :E Your password + :T §Aªº±K½X¡@ + # *** new message + !F_MANAGEPOP + :E POP accounts manager + :T POP ±b¸¹ºÞ²z­û¡@ + # *** new message + !F_MANAGEPPP + :E PPP accounts manager + :T PPP ±b¸¹ºÞ²z­û¡@ + # *** new message + !F_MANAGEUUCP + :E UUCP manager + :T UUCP ºÞ²z­û¡@ + # *** new message + !I_ENTERONEPASS + :E Enter password for root or your password\n + +The superuser and you are allowed to perform\n + +this configuration task. + :T ¿é¤J root ±K½X©Î§Aªº±K½X¡@\n + +¶W¥Î¤á¤Î§A¥i¥H¶i¦æ³o¡@\n + +³]©w¤u§@.¡@ + # *** new message + !E_NOUSERFROMID + :E Can't identify you from your user ID (%d) + :T ¤£¯à±q¥Î¤á ID (%d) ¤¤ÃѧO§A¡@ + # *** new message + !I_EMPTYLINE + :E Select [Add] to add an empty line + :T ¿ï [·s¼W] ·s¼W¤@ªÅ¦æ¡@ + # *** new message + !E_SHELLUNKNOWN + :E Shell %s does not exist + :T ¤£¦s¦bªº %s shell¡@ + # *** new message + !T_USERSHELL + :E Standard user shells + :T ¼Ð·Ç¥Î¤á shells¡@ + # *** new message + !T_PPPSHELL + :E Available PPP login shells + :T ¥i´£¨Ñªº PPP µn¤J shells¡@ + # *** new message + !T_SLIPSHELL + :E Available SLIP login shells + :T ¥i´£¨Ñªº SLIP µn¤J shells¡@ + # *** new message + !M_USRSHELLS + :E Available user shells + :T ¥i´£¨Ñªº¥Î¤á shells¡@ + # *** new message + !M_PPPSHELLS + :E Available PPP shells + :T ¥i´£¨Ñªº PPP shells¡@ + # *** new message + !M_SLPSHELLS + :E Available SLIP shells + :T ¥i´£¨Ñªº SLIP shells¡@ + # *** new message + !T_MANAGEACCT + :E User accounts + :T ¥Î¤á±b¸¹¡@ + # *** new message + !O_DENY + :E Denied + :T ©Úµ´¡@ + # *** new message + !O_PRIVENABLE + :E Granted + :T ¤¹³\\¡@ + # *** new message + !O_PRIVNOAUTH + :E Granted/silent + :T ¤¹³\\/ÀRÀq¡@ + # *** new message + !F_PRIVENABLE + :E Granted + :T ¤¹³\\¡@ + # *** new message + !E_ROOTID + :E Only root can get user id 0\n + :T ¥u¦³ root ¤~¥i±o¨ì id 0 ¥Î¤á¡@\n + # *** new message + !T_NEWUSER + :E User account creation + :T ¥Î¤á±b¸¹«Ø¥ß¡@ + # *** new message + !F_WASCHG + :E Last password change + :T ¤W¦¸±K½XÂà´«¡@ + # *** new message + !T_SHADEF + :E Account management defaults + :T ±b¸¹ºÞ²z¹w³]¡@ + # *** new message + !F_STDDURATION + :E Standard account duration + :T ¼Ð·Ç±b¸¹«ùÄò®É¶¡¡@ + # *** new message + !F_WASISDIS + :E Expiration date (yyyy/mm/dd) + :T ¨ì´Á¤é (yyyy/mm/dd)¡@ + # *** new message + !E_IVLDDATE + :E Invalid date + :T µL®Ä¤é´Á¡@ + # *** new message + !E_ROOTPASS + :E You are not allowed to change root's password\nin demo mode. + :T ¦b¥Ü½d¼Ò¦¡¤¤¡@\n¤£¯àÂà´« root ªº±K½X¡@ + # *** new message + !E_NONAME + :E No login name supplied + :T ¨S¦³´£¨Ñµn¤J¦W¦r¡@ + # *** new message + !M_EALIAS + :E Email aliases + :T ¹q¶l§O¦W¡@ + # *** new message + !E_SHELLNOTEXEC + :E Shell %s is not executable + :T %s Shell ¤£¯à°õ¦æ¡@ + # *** new message + !F_NEWPASSWORD + :E New password + :T ·s±K½X¡@ + # *** new message + !F_PASSCONFIRM + :E New password again + :T ¦A¨Ó·s±K½X¡@ + # *** new message + !T_IDENTIFY + :E Change your password + :T Âà´«§Aªº±K½X¡@ + # *** new message + !I_IDENTIFY + :E Enter you account id and your current password\n + +followed by the new password you want. You must\n + +enter it twice to make sure you have it right + :T ¿é¤J§Aªº±b¸¹ id ©M§A²{¦bªº±K½X, ¸òµÛ¦A¿é¤J¡@\n + +·sªº±K½X.§A¥²»Ý¿é¤J§Aªº±K½X¨â¦¸¡@\n + +¨ÓªÖ©w§Aªº¿é¤J¬O¥¿½T¡@ + # *** new message + !E_IVLDUPASS + :E Invalid user or password\nTry again! + :T µL®Ä¥Î¤á©Î±K½X¡@\n¦A¸Õ¡@ + # *** new message + !F_ACCOUNT + :E Account + :T ±b¸¹¡@ + # *** new message + !F_CURPASSWORD + :E Current password + :T ²{¦bªº±K½X¡@ + # *** new message + !N_NEWPASSOK + :E Your new password has been accepted! + :T §Aªº·sªº±K½X¤v³Q±µ¨ü!¡@ + # *** new message + !I_SERVER + :E

      Server %s

      \n
      \n + :T

      ¦øªA¾¹ %s

      \n
      \n + # *** new message + !E_UPASSROOT + :E Can't change the password\nof the superuser this way. Sorry! + :T ¤£¯à¥Î³oºØ¤èªkÂà´«¡@\n¶W¥Î¤áªº±K½X. ¹ï¤£°_!¡@ + # *** new message + !E_ACCTLOCKED + :E This account is locked\nyou are not allowed to change the password + :T ³o±b¸¹¤w³QÂê©w¡@\n§A¤£¯àÂà´«±K½X¡@ + # *** new message + !E_PASSLOCKED + :E You are not allowed to change your password\n + +Only the administrator is allowed to do it. + :T §A¤£¥iÂà´«§Aªº±K½X¡@\n + +¥u¦³ºÞ²z­û¤~¦ó.¡@ + # *** new message + !E_PASSWAIT + :E You must wait %d day(s) before changing your password again. + :T §A¥²»Ýµ¥«Ý %d ¤é¤~¥i¦A¦¸Âà´«±K½X¡@ + # *** new message + !E_PICKNEW + :E Pick a different new password please + :T ½Ð¿ï¥t¤@¤£¦Pªº·s±K½X¡@ + # *** new message + !F_CRONRANGE + :E From %d to %d + :T ¥Ñ %d ¦Ü %d¡@ + # *** new message + !F_COMMAND + :E Command + :T ©R¥O¡@ + # *** new message + !F_MONTHS + :E Months + :T ¤ë¡@ + # *** new message + !F_ISJANUARY + :E is January + :T ¬O¤@¤ë¡@ + # *** new message + !F_ISDECEMBER + :E is December + :T ¬O¤Q¤G¤ë¡@ + # *** new message + !F_DMONTH + :E Days of the month + :T ¤@¤ë¤ºªº¤Ñ¼Æ¡@ + # *** new message + !F_DWEEK + :E Days of the week + :T ¤@¬P´Á¤ºªº¤Ñ¡@ + # *** new message + !F_ISSUNDAY + :E is Sunday + :T ¬O¬P´Á¤é¡@ + # *** new message + !F_ISSATURDAY + :E is Saturday + :T ¬O¬P´Á¤»¡@ + # *** new message + !F_HOURS + :E Hours + :T ®É¡@ + # *** new message + !F_MINUTES + :E Minutes + :T ¤À¡@ + # *** new message + !T_CRONENTRY + :E Schedule job definition + :T ©w®É¤u§@©w¸q¡@ + # *** new message + !I_CRONENTRY + :E You can define a command which will be\nfollowed a precise schedule + :T §A¥i¥H©w¸q¤@©R¥O¦b¡@\n¯S©w±Æµ{¤U¹B¦æ¡@ + # *** new message + !T_JOBS + :E Schedule jobs for account %s + :T ±b¸¹ %s ªº±Æµ{¤u§@¡@ + # *** new message + !B_TASKS + :E Tasks + :T ¤u§@¡@ + # *** new message + !F_3VALUES + :E Any of those three + :T ³o¤T­Ó¤¤¥ô¤@¡@ + # *** new message + !F_CRONSTEP + :E From %d to %d step 2 + :T ¥Ñ %d ¦Ü %d ¨C¤G¨B¡@ + # *** new message + !F_ENABLED + :E This entry is active + :T ³o¶µ¬O¨Ï¥Î¤¤¡@ + # *** new message + !P_CRON + :E maintain cron files + :T ºûÅ@ cron ÀÉ¡@ + # *** new message + !F_EVERY + :E Every + :T ¨C¡@ + # *** new message + !F_MONTH + :E month + :T ¤ë¡@ + # *** new message + !F_DAYOFMONTH + :E days of the month + :T ¤@¤ë¤ºªº¤Ñ¼Æ¡@ + # *** new message + !F_DAYOFWEEK + :E days of the week + :T ¤@¬P´Áªº¤Ñ¡@ + # *** new message + !F_hOURS + :E hours + :T ®É¡@ + # *** new message + !F_mINUTES + :E minutes + :T ¤À¡@ + # *** new message + !T_BASE + :E Base info + :T °ò¥»¸ê®Æ¡@ + # *** new message + !T_PARAMS + :E Params + :T °Ñ¼Æ¡@ + # *** new message + !M_NORMAL + :E Normal + :T ¥¿±`¡@ + # *** new message + !T_PRIVROOTEQUIV + :E SuperUser equivalence + :T ¶W¥Î¤áµ¥®Ä¡@ + # *** new message + !T_PSYSCONTROL + :E 0-General system control + :T 0-¤@¯ë¨t²Î±±¨î¡@ + # *** new message + !T_CHGROOTPASS + :E Changing super user password + :T Âà´«¶W¥Î¤á±K½X¡@ + # *** new message + !I_ENTERROOTPASS + :E Please enter root's password + :T ½Ð¿é¤J root ªº±K½X¡@ + # *** new message + !T_POLICIES + :E Policies + :T ­ì«h¡@ + # *** new message + !E_PASSWDCMD + :E Usage: passwd\n + + Change your own password\n + + passwd user_account\n + + Change interactivly this user account password\n + + passwd -h\n + + passwd --help\n + + Print this screen\n + + passwd -l user_account\n + + Lock the account\n + + passwd -P user_account\n + + Change the password from a pipe\n + + echo new_passwd | passwd -P user_account\n + + passwd -u user_account\n + + Unlock the account\n + :T »yªk: passwd¡@\n + + Âà´«§Aªº±K½X¡@\n + + passwd user_account\n + + ¥æ½Í¦¡Âà´«³o±b¸¹ªº±K½X¡@\n + + passwd -h\n + + passwd --help\n + + ¦C¦L³oµe­±°T®§¡@\n + + passwd -l user_account\n + + Âê©w³o±b¸¹¡@\n + + passwd -P user_account\n + + ¸g¤@ºÞ¹DÂà´«±K½X¡@\n + + echo new_passwd | passwd -P user_account\n + + passwd -u user_account\n + + ¸ÑÂê³o±b¸¹¡@\n + # *** new message + !E_UNLOCKPASS + :E Unlock not done. This would yield an account\nwithout password + :T ¸ÑÂꥼ§¹¦¨. ³o·|²£¥Í¤@¨S¦³¡@\n±K½Xªº±b¸¹¡@ + # *** new message + !N_UNLOCK + :E Account is unlocked, old password left in place + :T ±b¸¹¤w¸ÑÂê, ±K½X³Ñ¤U¡@ + # *** new message + !H_GROUPS + :E Group\tID\tAlternate members + :T ¸s²Õ¡@\tID¡@\t¨ä¥¦¦¨­û¡@ + # *** new message + !F_USERPREFIX + :E Login Prefix + :T µn¤J«e­z¡@ + # *** new message + !I_USERPREFIX + :E The list of users is long, so you\n + +may want to filter it a bit by providing\n + +a prefix to search. An empty prefix means to show\n + +all users. + :T ³o¥Î¤á¦Cªí¤Óªø, §A¥i¥H¥Î¤@«e­z¡@\n + +§@¹LÂo·j¯Á. ªÅ¥Õ«e­z¥Nªí¦C¥X¡@\n + +¦³¥Î¤á.¡@ + # *** new message + !T_USERPREFIX + :E Filter control + :T ¹LÂo±±¨î¡@ + # *** new message + !H_USERS + :E Account\tName\tUid\tGroup + :T ±b¸¹¡@\t¦W¦r¡@\tUid¡@\t¸s²Õ¡@ + # *** new message + !T_GDISKQUOTA + :E Group disk quota + :T ¸s²ÕºÏºÐ­­ÃB¡@ + # *** new message + !T_UDEFDISKQUOTA + :E Members default disk quota + :T ¦¨­û¹w³]ºÏºÐ­­ÃB¡@ + # *** new message + !T_DISKQUOTA + :E Disk quota + :T ºÏºÐ­­ÃB¡@ + # *** new message + !F_DEFSHELL + :E Default shell + :T ¹w³] shell¡@ + # *** new message + !E_IVLDDEF + :E Default shell is not a member\nof the list + :T ¹w³] shell ¤£¬O¦Cªí¡@\n¦¨­û¡@ + # *** new message + !E_NOSPACE + :E No spaces allowed here + :T ¤£¥i¦b¦¹¦³ªÅ¦ì¡@ + # *** new message + !E_IVLDPERIOD + :E Invalid period definition + :T µL®Ä¶g´Á©w¸q¡@ + # *** new message + !E_UEXIST + :E User account %s already exists\n + :T ¥Î¤á±b¸¹ %s ¤v¦s¦b¡@\n + # *** new message + !E_UNOTEXIST + :E User account %s does not exist\n + :T ¥Î¤á±b¸¹ %s ¤£¦s¦b¡@\n + # *** new message + !T_SPCACCTS + :E Special accounts + :T ¯S§O±b¸¹¡@ + # *** new message + !X_PASSWD + :E Passwd + :T ±K½X¡@ + # *** new message + !X_TASKS + :E Tasks + :T ¤u§@¡@ + # *** new message + !F_DEFHOME + :E Default base dir for homes + :T ¹w³] home ªº°ò·Ç¥Ø¿ý¡@ + # *** new message + !E_GNOTEXIST + :E Group %s does not exist\n + :T ¸s²Õ %s ¤£¦s¦b¡@\n + # *** new message + !F_NEWUSERCMD + :E Post-create command + :T «Ø¥ß«áªº©R¥O¡@ + # *** new message + !F_DELETECMD + :E Delete account command + :T §R°£±b¸¹©R¥O¡@ + # *** new message + !E_NOTDEL + :E Account not deleted + :T ±b¸¹¥¼§R°£¡@ + # *** new message + !I_NOTDEL + :E User account was not deleted\n + +because the post-deletion command failed\n + +\n + +Do you want to see the log ? + :T ¥Î¤á±b¸¹¥¼§R°£¡@\n + +¦]¬°§R°£«áªº©R¥O¥¢±Ñ¡@\n + +\n + +§A¬O§_­nÀ˵ø°O¿ý?¡@ + # *** new message + !E_DELANYWAY + :E Delete anyway + :T µL½×¦p¦ó§R°£¡@ + # *** new message + !I_DELANYWAY + :E Would you like to delete this account\n + +even if the post-deletion command failed ? + :T µL½×§R°£«á©R¥O¥¢±Ñ»P§_¡@\n + +§A¬O§_­n§R°£³o±b¸¹?¡@ + # *** new message + !E_PREDELFAIL + :E Pre-delete command failed for account %s\n + :T ±b¸¹ %s ªº§R°£«e©R¥O¥¢±Ñ¡@\n + # *** new message + !F_PRIVGROUP + :E Private group + :T ¨p¤H¸s²Õ¡@ + # *** new message + !I_PRIVGROUP + :E One group per user + :T ¨C¥Î¤á¤@¸s²Õ¡@ + # *** new message + !E_NOGROUP + :E You must specify a group + :T §A¥²»Ý«ü©ú¤@¸s²Õ¡@ + # *** new message + !I_CREATEGROUP + :E Group %s does not exist\nDo you want to create it? + :T ¸s²Õ %s ¤£¦s¦b¡@\n§A¬O§_­n«Ø¥ß?¡@ + # *** new message + !T_CREATGROUP + :E Create group + :T «Ø¥ß¸s²Õ¡@ + # *** new message + !F_SUPGROUP + :E Supplementary groups + :T »²§U¸s²Õ¡@ + # *** new message + !E_IVLDSUPGROUP + :E Invalid supplementary group list + :T µL®Ä»²§U¸s²Õ¦Cªí¡@ + # *** new message + !F_GECOSPREFIX + :E Full name prefix + :T ¥þ¦W«e­z¡@ + # *** new message + !F_UID_FROM + :E UID From + :T UID ¥Ñ¡@ + # *** new message + !F_UID_TO + :E UID To + :T UID ¦Ü¡@ + # *** new message + !E_GEXIST + :E Group %s already exists\n + :T ¸s²Õ %s ¤w¦s¦b¡@\n + # *** new message + !F_GROUPOPT + :E group (opt) + :T ¸s²Õ (¿ï¶µ)¡@ + # *** new message + !F_ARCHIVECMD + :E Archive account command + :T ±b¸¹ÂkÀÉ©R¥O¡@ + # *** new message + !F_POSTDELCMD + :E Pre-delete command + :T §R°£«e©R¥O¡@ + # *** new message + !I_ARCHACCTDATA + :E Archive the account's data + :T ±b¸¹¸ê®ÆÂkÀÉ¡@ + # *** new message + !I_DELACCTDATA + :E Delete the account's data + :T §R°£±b¸¹¸ê®Æ¡@ + # *** new message + !I_LEAVEDATA + :E Leave the account's data in place + :T ³Ñ¤U±b¸¹¸ê®Æ¡@ + # *** new message + !T_DELACCT + :E Deleting account %s + :T §R°£±b¸¹ %s¡@ + # *** new message + !I_DELACCT + :E You are deleting an account.\n + +The home directory and the mail inbox folder\n + +may be archived, deleted or left in place + :T §A²{¦b§R°£¤@±b¸¹.¡@\n + +¥¦ªº home ¥Ø¿ý©M¶l¥ó inbox ÀÉ®×§¨¡@\n + +¥i¥HÂkÀÉ, §R°£©Î³Ñ¤U¡@ + # *** new message + !I_ENABLED + :E The account is enabled + :T ³o±b¸¹¤w±Ò°Ê¡@ + # *** new message + !T_YOURNAME + :E Your accound ID + :T §Aªº±b¸¹ ID¡@ + # *** new message + !I_YOURNAME + :E Please enter your account name + :T ½Ð¿é¤J§Aªº±b¸¹¦W¦r¡@ + # *** new message + !E_PASSCHG + :E Password was not changed + :T ±K½X¥¼Âà´«¡@ + # *** new message + !I_DELETING + :E Delete account %s (%s)\n + :T §R°£±b¸¹ %s (%s)¡@\n + # *** new message + !I_CREATING + :E Creating user account %s (%s)\n + :T «Ø¥ß¥Î¤á±b¸¹ %s (%s)¡@\n + # *** new message + !T_SPCLINKS + :E Special links + :T ¯S§O³s±µ¡@ + # *** new message + !T_CHGPASS + :E Change your password + :T Âà´«§Aªº±K½X¡@ + # *** new message + !T_EdITUSERS + :E Administer user accounts + :T ºÞ²z­û¥Î¤á±b¸¹¡@ + # *** new message + !T_HOMEDIRS + :E Directories + :T ¥Ø¿ý¡@ + # *** new message + !F_DIFFDIR + :E Different directory + :T ¤£¦P¥Ø¿ý¡@ + # *** new message + !I_CREATEHOME + :E for each members + :T ¨C¤@¦¨­û¡@ + # *** new message + !F_HOMEBASE + :E Home base directory + :T Home °ò·Ç¥Ø¿ý¡@ + # *** new message + !F_CREATEPERM + :E Creation permissions + :T «Ø¥ßÅv­­¡@ + # *** new message + !Q_MISSBASE + :E Home base %s does not exist\nDo you want to create it + :T Home °ò·Ç %s ¤£¦s¦b¡@\n§A¬O§_­n«Ø¥ß¥¦¡@ + # *** new message + !T_MISSBASE + :E Missing home base + :T ¯Ê¤Ö home °ò·Ç¡@ + # *** new message + !E_IVLDDIR + :E Home base %s exist\nbut is not a directory + :T Home °ò·Ç %s ¦s¦b¡@\n¦ý¤£¬O¤@¥Ø¿ý¡@ + # *** new message + !I_USAGE + :E userconf command line options\n + +\n + + --adduser userid group username shell\n + + --deluser userid\n + + --addgroup group\n + + --delgroup group\n + + --help + # *** new message + !F_DONOTHING + :E Do nothing + :T ¨S°µ¬Æ»ò¡@ + # *** new message + !F_CHOWNDIR + :E Change ownership of the directory + :T Âà´«¥Ø¿ýªº¾Ö¦³¤H¡@ + # *** new message + !T_FIXHOME + :E Fixing home directory + :T ­×¥¿ home ¥Ø¿ý¡@ + # *** new message + !F_CHOWNRECUR + :E Change ownership recursivly + :T Âà´«¾Ö¦³¤H¡@ + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/usermenu.dic linuxconf-1.15/messages/bg5/usermenu.dic *** linuxconf-1.14r4/messages/bg5/usermenu.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/usermenu.dic Tue Apr 13 04:15:17 1999 *************** *** 0 **** --- 1,65 ---- + @version 0 + # *** new message + !I_OPTIONS + :E Linuxconf's options + :T Linuxconf ªº¿ï¶µ¡@ + # *** new message + !T_ONEMENU + :E One user menu + :T ¤@­Ó¥Î¤áªºµæ³æ¡@ + # *** new message + !I_ONEMENU + :E Select the options you want to see\nin your custom menu + :T ½Ð¦b¦Û­qªºµæ³æ¤¤¡@\n¿ï¨º¨Ç¿ï¶µÀ˵ø¡@ + # *** new message + !I_NEWMENU + :E Select [Add] to define a new menu + :T ½Ð¿ï [·s¼W] ©w¸q·sµæ³æ¡@ + # *** new message + !T_USERMENUS + :E User defined menus + :T ¦Û­qµæ³æ¡@ + # *** new message + !I_USERMENUS + :E Here is the list of user defined menus + :T ³o¦Cªí¬O¦Û­qµæ³æ¡@ + # *** new message + !M_usermenu + :E User defined menu + :T ¦Û­qµæ³æ¡@ + # *** new message + !T_USAGE + :E Module usermenu\n\n Supply the menu ID to start the user menu\n + :T ¼Ò²Õ usermenu¡@\n\n ½Ð´£¨Ñµæ³æ ID ¥H¶}±Ò¦Û­qµæ³æ¡@\n + # *** new message + !E_NOSPACE + :E No space in menu ID + :T µæ³æ ID ¤£¥i¦³ªÅ¦ì¡@ + # *** new message + !F_MENUID + :E Menu ID + :T µæ³æ ID¡@ + # *** new message + !F_MENUTITLE + :E Menu title + :T µæ³æ¼ÐÃD¡@ + # *** new message + !P_ENTERMENU + :E enter this menu + :T ¿é¤J³oµæ³æ¡@ + # *** new message + !T_UMENUPRIV + :E User defined menus + :T ¥Î¤á©w¸qµæ³æ¡@ + # *** new message + !T_MENULIST + :E List of user defined menus + :T ¥Î¤á©w¸qµæ³æ¦Cªí¡@ + # *** new message + !T_MENUID + :E Menu ID + :T µæ³æ ID¡@ + # *** new message + !T_MENUDESC + :E Description + :T »¡©ú¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/uucp.dic linuxconf-1.15/messages/bg5/uucp.dic *** linuxconf-1.14r4/messages/bg5/uucp.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/uucp.dic Tue Apr 13 04:15:18 1999 *************** *** 0 **** --- 1,295 ---- + @version 0 + # *** new message + !E_IVLKEYW + :E Invalid keyword \"%s\"\n + :T µL®ÄÃöÁä¦r \"%s\"¡@\n + # *** new message + !E_IVLKEYPAIR + :E Invalid keyword value pair\nexpected an equal sign\n\t%s\n + :T µL®ÄÃöÁä¦r­È¹ï¡@\n´Á«Ý¤@µ¥¸¹¡@\n\t%s\n + # *** new message + !F_UUCPSYS + :E Remote system name + :T »·µ{¨t²Î¦W¦r¡@ + # *** new message + !F_WHEN + :E Schedule + :T ±Æµ{¡@ + # *** new message + !F_PHONE + :E Phone + :T ¹q¸Ü¡@ + # *** new message + !F_COMMENT + :E Comment + :T ³Æµù¡@ + # *** new message + !T_SYSTEM + :E One system configuration + :T ¤@¨t²Î³]©w¡@ + # *** new message + !I_ADDSYS + :E Select [Add] to define one new configuration + :T ¿ï [·s¼W] ©w¸q¤@·s³]©w¡@ + # *** new message + !T_SYSTEMS + :E Edit uucp configurations + :T ½s¿è uucp ³]©w¡@ + # *** new message + !I_SYSTEMS + :E Each configuration control the way\n + +your computer interact with other computers using\n + +the UUCP protocol (background file transfer)\n + :T ¨C¤@³]©w±±¨î§Aªº¹q¸£¸ò¥t¤@¹q¸£¡@\n + +¥Î UUCP ¨ó©w (­I¹ÒÀɮ׶ǰe)¡@\n + +¥æ½Íªº¤èªk.¡@ + # *** new message + !I_SYSTEM + :E You must define how and when one\nsystem can be reached.\n + :T §A¥²»Ý©w¸q¤@¨t²Î¡@\n«ç¼Ë¤Î¦ó®É¨ì¹F.¡@\n + # *** new message + !M_SYSTEMS + :E systems + :T ¨t²Î¡@ + # *** new message + !M_HOSTS + :E devices and modems + :T ³]³Æ©M ¼Æ¾Ú¾÷¡@ + # *** new message + !M_CONFIG + :E Configure + :T ³]©w¡@ + # *** new message + !T_UUCP + :E UUCP configurator + :T UUCP ³]©w¡@ + # *** new message + !I_UUCP + :E This package allows you to configure from\n + +scratch a UUCP network using modem\n + +and serial devices + :T ³o®M¥óÅý§A¥Ñ³Ìªì¶}©l³]©w¤@¡@\n + +¨Ï¥Î¼Æ¾Ú¾÷©M¦ê³s³]³Æªº¡@\n + +UUCP ºô¸ô¡@ + # *** new message + !E_NETCONF + :E uucpconf: Invalid arguments\n + :T uucpconf: µL®Ä°Ñ¼Æ¡@\n + # *** new message + !E_NETCONFDEF + :E uucpconf without argument start the interactive mode\n + :T ¨S¦³°Ñ¼Æªº uucpconf ¶}±Ò¥æ½Í¼Ò¦¡¡@\n + # *** new message + !E_NOTDONE + :E Not done yet, sorry! + :T ÁÙ¥¼§¹¦¨, ¹ï¤£°_!¡@ + # *** new message + !M_ANY + :E Your system call anytime needed + :T §Aªº¨t²Î©I¥s¦b¥ô¦ó®É¶¡¬Ò»Ý¡@ + # *** new message + !M_NEVER + :E The other site is calling you + :T ¥t¤@¦aÂI¥¿©I¥s§A¡@ + # *** new message + !M_EXAMPLE + :E One example + :T ¤@¨Ò¤l¡@ + # *** new message + !E_EMPTY + :E must not be empty\n + :T ¤£¥iªÅ¥Õ¡@\n + # *** new message + !E_NAME + :E Site name + :T ¦ì¸m¦W¦r¡@ + # *** new message + !E_SPEED + :E modem speed + :T ¼Æ¾Ú¾÷³t«×¡@ + # *** new message + !E_PHONE + :E Phone + :T ¹q¸Ü¡@ + # *** new message + !E_SOMERRORS + :E There are some errors\n%s + :T ³o¸Ì¦³¨Ç¿ù»~¡@\n%s + # *** new message + !E_SCHED + :E Schedule + :T ±Æµ{¡@ + # *** new message + !P_UUCP + :E to manage uucp + :T ºÞ²z uucp¡@ + # *** new message + !T_PERMCONF + :E Permission configuration + :T Åv­­³]©w¡@ + # *** new message + !F_LOGNAME + :E Login name + :T µn¤J¦W¦r¡@ + # *** new message + !F_MAYREQUEST + :E May request files + :T ¥i­n¨DÀɮס@ + # *** new message + !F_DIRREAD + :E May read + :T ¥iŪ¡@ + # *** new message + !F_MAYSEND + :E May send files + :T ¥i¶ÇÀɮס@ + # *** new message + !F_MAYWRITE + :E May write + :T ¥i¼g¡@ + # *** new message + !F_MAYEXEC + :E Available commands + :T ¥i¥Î©R¥O¡@ + # *** new message + !F_MASQUERADE + :E Masquerade as + :T °°¸Ë¬°¡@ + # *** new message + !T_LOGINSCRIPT + :E Login script + :T µn¤J¸}¥»¡@ + # *** new message + !F_SEND + :E Send + :T ¶Ç°e¡@ + # *** new message + !F_EXPECTEDLOGIN + :E Expected login prompt + :T ´Á«Ýµn¤J´£¥Ü¡@ + # *** new message + !F_EXPECTED + :E Expected + :T ´Á«Ý¡@ + # *** new message + !F_TYPE + :E Transport type + :T ¹B¿éºØÃþ¡@ + # *** new message + !M_DIRECT + :E Null modem serial line + :T ªÅ¼Æ¾Ú¾÷¦ê³s½u¡@ + # *** new message + !M_UUCPTCP + :E UUCP over TCP/IP + :T TCP/IP ¤§¤Wªº UUCP¡@ + # *** new message + !M_MODEM + :E Modem device + :T ¼Æ¾Ú¾÷³]³Æ¡@ + # *** new message + !F_SCHED + :E Polling schedule + :T ½×¸ß±Æµ{¡@ + # *** new message + !F_MODEMTYPE + :E Modem type + :T ¼Æ¾Ú¾÷ºØÃþ¡@ + # *** new message + !T_DEVICE + :E Uucp device configuration + :T Uucp ³]³Æ³]©w¡@ + # *** new message + !I_DEVICE + :E You must specify the speed range\n + +and the modem type associated with a serial\n + +device. + :T §A¥²»Ý«ü©w¸ò¤@¦ê³s³]³Æ¬ÛÁpªº¡@\n + +³t«×½d³ò©M¼Æ¾Ú¾÷¡@\n + +ºØÃþ¡@ + # *** new message + !T_DEVICES + :E Edit uucp devices configuration + :T ½s¿è uucp ³]³Æ³]©w¡@ + # *** new message + !I_DEVICES + :E Each configuration control an uucp device\n + +and the way this device (modem) is\n + +initialised/dialed\n + :T ¨C¤@³]©w±±¨î¤@ uucp ³]³Æ©M³o³]³Æ¡@\n + +(¼Æ¾Ú¾÷)°_°Ê/¼·¸¹¡@\n + +ªº¤èªk.¡@ + # *** new message + !E_EMPTYLOGNAME + :E No login name + :T ¨S¦³µn¤J¦W¦r¡@ + # *** new message + !E_NOEDIT + :E No edit on this field + :T ³oÄæ¤£¥i½s¿è¡@ + # *** new message + !Q_DELSYSTEM + :E Confirm deletion of uucp system + :T ½T©w§R°£ uucp ¨t²Î¡@ + # *** new message + !E_TRANS + :E Transport type + :T ¹B¿éºØÃþ¡@ + # *** new message + !M_TASKS + :E scheduled tasks + :T ±Æµ{¤u§@¡@ + # *** new message + !Q_INSTALLTASKS + :E Install standard uucp tasks + :T ¦w¸Ë¼Ð·Ç uucp ¤u§@¡@ + # *** new message + !I_INSTALLTASKS + :E UUCP requires some scheduled tasks to operate.\n + +There is no tasks configured on your system.\n + +Do you want to install preset values ? + :T UUCP »Ý­n¤@¨Ç±Æµ{¤u§@¥H¹B¦æ.¡@\n + +¦b§Aªº¨t²Î¤º¨S¦³¤u§@³]©w.¡@\n + +§A¬O§_­n¦w¸Ë¹w©wªº¼Æ­È?¡@ + # *** new message + !O_UUCICO + :E Process the outbound queue + :T ¹B¦æ¿é¥X¦C¶¤¡@ + # *** new message + !O_POLL + :E Generate poll requests + :T ²£¥Í½ü¸ß­n¨D¡@ + # *** new message + !O_CLEANUP + :E Cleanup the different logs + :T ²M°£¤£¦P°O¿ý¡@ + # *** new message + !M_UUCPSYS + :E Unix To Unix copy (UUCP) + # *** new message + !M_UUCP + :E UUCP (Unix to unix copy) + # *** new message + !F_SERIALDEF + :E Serial device + :T ¦ê³s³]³Æ¡@ + # *** new message + !F_FIRSTCOM + :E first standard serial port COM1 + :T ²Ä¤@¼Ð·Ç¦ê³s°ð COM1¡@ + # *** new message + !F_SECONDCOM + :E Second standard serial port COM2 + :T ²Ä¤G¼Ð·Ç¦ê³s°ð COM2¡@ + # *** new message + !F_COM1M + :E COM1 when using mgetty + :T ·í¨Ï¥Î mgetty ªº COM1¡@ + # *** new message + !F_COM2M + :E COM2 when using mgetty + :T ·í¨Ï¥Î mgetty ªº COM2¡@ + # *** new message + !F_BAUD + :E Baud rate + :T Àj²v¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/wuftpd.dic linuxconf-1.15/messages/bg5/wuftpd.dic *** linuxconf-1.14r4/messages/bg5/wuftpd.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/wuftpd.dic Tue Apr 13 04:15:18 1999 *************** *** 0 **** --- 1,192 ---- + @version 0 + # *** new message + !M_wuftpd + :E Ftp server (wu-ftpd) + :T Ftp ¦øªA¾¹ (wu-ftpd)¡@ + # *** new message + !T_USAGE + :E Module wuftpd\n + +\n + + Without argument, enter the module main menu\n + + --help\n + + --addvhost vhost --root path\n + + --delvhost vhost\n + :T ¼Ò²Õ wuftpd¡@\n + +\n + + ¨S¦³°Ñ¼Æ, ¿é¤J¼Ò²Õ¥Dµæ³æ¡@\n + + --help\n + + --addvhost vhost --root path\n + + --delvhost vhost\n + # *** new message + !T_BASE + :E Base configuration + :T °ò¥»³]©w¡@ + # *** new message + !T_FTPCONF + :E Wu-ftpd configurator + :T Wu-ftpd ³]©w¾¹¡@ + # *** new message + !T_EMAIL + :E Email of admin + :T ºÞ²z­û¹q¶l¡@ + # *** new message + !F_ADDR + :E Virtual host + :T µêÀÀ¥D¾÷¡@ + # *** new message + !F_ROOT + :E Archive path + :T ÂkÀɸô®|¡@ + # *** new message + !F_BANNER + :E Banner message file + :T ¼ÐÃD°T®§ÀÉ¡@ + # *** new message + !F_LOGFILE + :E Log file + :T °O¿ýÀÉ¡@ + # *** new message + !I_DELREC + :E Select [Del] to delete this record + :T ¿ï [§R°£] §R°£³o°O¿ý¡@ + # *** new message + !H_VIRTUALS + :E Address\tRoot dir + :T ¦a§}¡@\t®Ú¥Ø¿ý¡@ + # *** new message + !T_VIRTUALS + :E Virtual hosts + :T µêÀÀ¥D¾÷¡@ + # *** new message + !I_ADMINTREES + :E Here are the various virtual hosts for anonymous ftp. + :T ³oùجOµ¹°Î¦W ftp ªº¤£¦PµêÀÀ¥D¾÷¡@ + # *** new message + !T_ONEVIRTUAL + :E One virtual ftp host + :T ¤@µêÀÀ ftp ¥D¾÷¡@ + # *** new message + !T_FTPBASECONF + :E Ftp server configuration + :T Ftp ¦øªA¾¹³]©w¡@ + # *** new message + !M_BASIC + :E Basic configuration + :T °ò¥»³]©w¡@ + # *** new message + !M_VIRTUAL + :E Virtual hosts + :T µêÀÀ¥D¾÷¡@ + # *** new message + !I_COMPRESS + :E May request compress files + :T ¥i­n¨DÀ£ÁYÀÉ¡@ + # *** new message + !I_TAR + :E May request tar files + :T ¥i­n¨D tar ÀÉ¡@ + # *** new message + !I_CHMOD + :E May chmod files + :T ¥i chmod ÀÉ¡@ + # *** new message + !I_DELETE + :E May delete files + :T ¥i§R°£Àɮס@ + # *** new message + !I_OVERWRITE + :E May overwrite files + :T ¥iÂмgÀɮס@ + # *** new message + !T_RENAME + :E May rename files + :T ¥i§ó§ïÀɮצW¦r¡@ + # *** new message + !I_LOGINBOUND + :E Log inbound transfers + :T °O¿ý¿é¤J¶Ç°e¡@ + # *** new message + !I_LOGOUTBOUND + :E Log outbound transfers + :T °O¿ý¿é¥X¶Ç°e¡@ + # *** new message + !N_MISC + :E Misc + :T Âø¶µ¡@ + # *** new message + !T_MISC + :E Misc. + :T Âø¶µ¡@ + # *** new message + !T_GUESTGROUP + :E Guest groups + :T «È¤H¸s²Õ¡@ + # *** new message + !T_BANNER + :E Banner file + :T ¼ÐÃDÀÉ¡@ + # *** new message + !N_ACCESSCTRL + :E Control + :T ±±¨î¡@ + # *** new message + !T_ACCESSCTRL + :E Access controls + :T ¦s¨ú±±¨î¡@ + # *** new message + !T_REALUSERS + :E Real users + :T ¯u¹ê¥Î¤á¡@ + # *** new message + !T_GUESTUSERS + :E Guest users + :T «È¤H¥Î¤á¡@ + # *** new message + !T_ANONYMOUS + :E Anonymous + :T °Î¦W¡@ + # *** new message + !T_SHUTDOWN + :E Shutdown message + :T Ãö¾÷°T®§¡@ + # *** new message + !M_WUFTPD + :E wu-ftpd server + :T wu-ftpd ¦øªA¾¹¡@ + # *** new message + !I_NEWROOTDIR + :E The directory for anonymous ftp does not exist.\n + +Do you want to create directory %s\n + +and initialise it so it become suitable for\n + +anonymous ftp operation ? + :T °Î¦W ftp ¥Ø¿ý¤£¦s¦b.¡@\n + +§A¬O§_­n«Ø¥ß³o¥Ø¿ý: %s¡@\n + +©M±Ò©l¥¦¨Ï¥¦¾A¦X°Î¦W¡@\n + +ftp ¤u§@?¡@ + # *** new message + !T_NEWROOTDIR + :E Create root dir + :T «Ø¥ß®Ú¥Ø¿ý¡@ + # *** new message + !T_MVIRTUAL + :E ftp + # *** new message + !E_VHOSTEXIST + :E Virtual host %s\nis already configured\nfor the service ftp + :T µêÀÀ¥D¾÷ %s¡@\n¤w¬°ªA°È ftp §@³]©w¡@ + # *** new message + !E_HOSTEXIST + :E Wuftpd: Virtual host %s already configured\n + :T Wuftpd: µêÀÀ¥D¾÷ %s ¤w³]©w¡@\n + # *** new message + !E_IVLDOPT + :E Invalid option %s\n + :T µL®Ä¿ï¶µ %s¡@\n + # *** new message + !E_MISSING + :E Wuftpd: Virtual host %s is not configured\n + :T Wuftpd: µêÀÀ¥D¾÷ %s ¥¼³]©w¡@\n + # *** new message + !E_NOROOT + :E Wuftpd: no root specified\n + :T Wuftpd: ¨S¦³«ü©ú root¡@\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/xconf.dic linuxconf-1.15/messages/bg5/xconf.dic *** linuxconf-1.14r4/messages/bg5/xconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/xconf.dic Tue Apr 13 04:15:19 1999 *************** *** 0 **** --- 1,9 ---- + @version 0 + # *** new message + !E_MISSCONF + :E %s nor %s do exist\n + :T %s ©Î $s ¤£¦s¦b¡@\n + # *** new message + !E_MISSDIR + :E %s or %s exist, but %s does not\n + :T %s ©Î %s ¦s¦b, ¦ý %s ¤£¦s¦b¡@\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/bg5/xterminals.dic linuxconf-1.15/messages/bg5/xterminals.dic *** linuxconf-1.14r4/messages/bg5/xterminals.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/bg5/xterminals.dic Tue Apr 13 04:15:20 1999 *************** *** 0 **** --- 1,29 ---- + @version 0 + # *** new message + !M_xterminals + :E Xterminals manager + :T Xterminals ºÞ²z­û¡@ + # *** new message + !T_USAGE + :E xterminals usage\n\nxterminals --option ...\n + :T xterminals »yªk¡@\n\nxterminals --option ...\n + # *** new message + !M_INSTALL + :E Server installation + :T ¦øªA¾¹¦w¸Ë¡@ + # *** new message + !M_BOOTFLOP + :E Build a boot floppy + :T «Ø¥ß¤@°_°ÊºÏºÐ¡@ + # *** new message + !T_XTERMINALS + :E X terminals administration + :T X ²×ºÝ¾÷ºÞ²z¡@ + # *** new message + !I_XTERMINALS + :E This menu allows to configure the X terminals services + :T ³oµæ³æ¥i¥H³]©w X ²×ºÝ¾÷ªA°È¡@ + # *** new message + !M_INSTPKG + :E Install/Update packages + :T ¦w¸Ë/§ó·s ®M¥ó¡@ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/apache.dic linuxconf-1.15/messages/cz/apache.dic *** linuxconf-1.14r4/messages/cz/apache.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/apache.dic Fri Apr 9 12:44:19 1999 *************** *** 0 **** --- 1,212 ---- + @version 0 + !M_DEFAULT + :E Defaults + :T Obecné + !M_DOMAINS + :E Virtual domains + :T Virtuální domény + !M_SUBDIRS + :E Sub-directory specs + :T Specifikace podadresáøù + !T_APACHE + :E Apache administration + :T Správa Apache + !I_APACHE + :E This menu allows to configure the Apache web server + :T Tato obrazovka umo¾òuje nastavit WWW server Apache + !M_APACHE + :E Apache Web server + :T WWW server Apache + !T_TUNING + :E Tuning + :T Vyladìní + !T_APACHEDEF + :E Apache defaults + :T Obecné nastavení + !I_APACHEDEF + :E You can configure the base setup and\nsome defaults + :T Lze konfigurovat základní nastavení\n a nìkteré implicitní hodnoty + !F_LISTENPORT + :E Listen on port + :T Poslouchat na portu + !F_STARTSERVERS + :E Start servers + :T Spustit servery + !F_MAXCLIENTS + :E Max clients per servers + :T Maximální poèet klientù na server + !F_MAXREQUESTS + :E Max requests per child + :T Maximální poèet po¾adavkù na potomka + !F_MINSPARESERVERS + :E Minimum of spare servers + :T Minimální poèet zálo¾ních serverù + !F_MAXSPARESERVERS + :E Maximum of spare servers + :T Maximální poèet zálo¾ních serverù + !F_PIDFILE + :E Pid file + :T Soubor s PID + !F_UID + :E Execute as user + :T Spus» jako u¾ivatel + !F_GID + :E Execute as group + :T Spus» jako skupina + !T_FEATURES + :E Features + :T Mo¾nosti + !I_INDEXES + :E Indexes + :T Indexy + !I_FOLLOWSYMLINK + :E May follow symlinks + :T Lze pou¾ívat symbolické linky + !I_HOSTNAMELOOKUPS + :E Host name lookups + :T Vyhledávání jména poèítaèe + !F_TIMEOUT + :E Connection timeout + :T Èekací doba spojení + !F_SERVERADMIN + :E Administrator email + :T E-mail správce + !F_SERVERNAME + :E Server name + :T Jméno serveru + !F_DOCUMENTROOT + :E Document root + :T Koøenový adresáø dokumentù + !F_ERRLOG + :E Error log + :T Chybová hlá¹ení + !F_TRANSFERLOG + :E Transfer log + :T Hlá¹ení o pøenosu + !F_AGENTLOG + :E Agent log + :T Hlá¹ení o agentech + !F_PATH + :E Directory path + :T Adresáøová cesta + !T_DIRRULES + :E Directory rules + :T Adresáøová pravidla + !I_DIRRULES + :E You are allowed to enter configurations\n + +which apply to this directory and its sub-directories\n + :T Zde lze vlo¾it konfigurace, které se pou¾ijí\n + +pro tento adresáø a jeho podadresáøe\n + !I_NEWDIR + :E Select [Add] to add a new directory rule + :T Pomocí [Pøidej] lze pøidat nové adresáøové pravidlo + !T_DIRS + :E Directories + :T Adresáøe + !I_DIRS + :E You can override various rules directory\nper directory + :T Zde lze pøedefinovat pravidla pro rùzné\nadresáøe + !F_VDOMNAME + :E Virtual host name + :T Jméno virtuálního poèítaèe + !T_VDOMAIN + :E Virtual host setup + :T Nastavení virtuálního poèítaèe + !I_NEWDOMAIN + :E Select [Add] to add a new virtual domain + :T Pomocí [Pøidej] lze pøidat novou virtuální doménu + !T_DOMAINS + :E Virtual domains + :T Virtuální domény + !I_DOMAINS + :E You can define multiple independant virtual\ndomains on this server + :T Lze definovat více nezávislých virtuálních domén. + !I_VDOMAIN + :E You are allowed to enter configurations\nfor a virtual host/domain\n + :T Zde lze nakonfigurovat virtuální\npoèítaè/doménu\n + !F_REFERERLOG + :E Referer log + :T Log se záznamy Referer + !E_UNKNOWNDIR + :E Unknown scope directive: %s + :T Neznámá direktiva pro rozsah: %s + !T_PRIVIAPACHE + :E Apache administration + :T Administrace Apache + !T_SERVICES + :E 1-Services + :T 1-Slu¾by + !I_INCLUDES + :E Server side includes + :T Soubory include pro server + !I_INCLUDESNOEXEC + :E IncludesNOEXEC + :T Include NOEXEC + !I_EXECCGI + :E May execute CGI + :T Lze spou¹tìt CGI skripty + !I_FOLLOWOWNERSYMLINK + :E Follow symlink if owner matches + :T Pou¾ít symbolické linky, kdy¾ je shoduje vlastník + !I_MULTIVIEWS + :E Multi views + :T Vícenásobná zobrazení + !T_OVERRIDE + :E Override policies + :T Pøedefinovat politiky + !I_AUTHCONFIG + :E Authentification configs + :T Konfigurace ovìøování + !I_FILEINFO + :E File info + :T Informace o souboru + !I_LIMIT + :E Limits + :T Omezení + !I_OPTIONS + :E Options + :T Mo¾nosti + !F_SERVERALIAS + :E Server aliases + :T Aliasy pro server + !F_SCRIPTALIAS + :E Script Alias + :T Alias pro skripty + !F_SETUIDUSER + :E CGI SetUID User + :T CGI SetUID u¾ivatele + !F_SETUIDGROUP + :E CGI SetUID Group + :T CGI SetUID skupiny + !T_MVIRTUAL + :E web + :T WWW + !E_VHOSTEXIST + :E Virtual host %s\nis already configured\nfor the service http + :T Virtuální poèítaè %s\nu¾ je nakonfigurován pro HTTP + !I_USAGE + :E module apache\n + +\n + + --help\n + + --addvhost hostname --root path\n + + --delvhost hostname\n + :T modul apache\n + +\n + + --help\n + + --addvhost poèítaè --root cesta\n + + --delvhost poèítaè\n + !E_HOSTEXIST + :E Apache: Virtual host %s already configured\n + :T Apache: Virtuální poèítaè %s u¾ je nakonfigurován\n + !E_IVLDOPT + :E Invalid option %s\n + :T Neplatný pøepínaè %s\n + !E_MISSING + :E Apache: Virtual host %s is not configured\n + :T Apache: Virtuální poèítaè %s není nakonfigurován\n + !E_NOROOT + :E Apache: no root specified\n + :T Apache: koøenový adresáø nezadán\n + !E_CREATEROOT + :E Can't create document root directory %s(%s)\n + :T Nelze vytvoøit koøenový adresáø pro dokumenty %s(%s)\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/askrunlevel.dic linuxconf-1.15/messages/cz/askrunlevel.dic *** linuxconf-1.14r4/messages/cz/askrunlevel.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/askrunlevel.dic Fri Apr 9 13:15:36 1999 *************** *** 0 **** --- 1,452 ---- + @version 0 + !E_GRAPH + :E Can't do this\nbecause the Graphic mode is not yet\nconfigured\n\n%s + :T Toto nelze provést,\nproto¾e grafický mód není zatím\nnakonfigurován\n\n%s + !E_GRAPHNET + :E Can't do this\n + +because the Graphic mode\n + +and the Networking are not yet\n + +configured\n + +\n + +%s\n + +\n + +%s + :T Toto nelze provést,\n + +proto¾e grafický mód\n + +a sí» zatím nejsou\n + +nakonfigurovány\n + +\n + +%s\n + +\n + +%s + !E_NET + :E Can't do this\nbecause the Networking is not yet\nconfigured\n\n%s + :T Toto nelze provést,\nproto¾e sí» zatím není\nnakonfigurovaná\n\n%s + !E_PROCUPTIME + :E Can't parse /proc/uptime\n + :T Nelze pøeèíst /proc/uptime\n + !M_LILO + :E LILO defaults (Linux boot loader) + :T Implicitní nastavení LILO (Linux boot loader) + !M_DEFLILO + :E default boot configuration + :T Implicitní startovací konfigurace + !M_NEWKERN + :E a new kernel + :T Nový kernel + !M_COMPILED + :E a kernel you have compiled + :T Novì zkompilovaný kernel + !M_DEFBOOT + :E default boot mode + :T Implicitní startovací mód + !M_RUNLEVELS + :E runlevels + :T operaèní úrovnì + !M_CONFIG + :E Configure + :T Nastavit + !M_CHANGE + :E Change + :T Zmìnit + !M_ADDLILO + :E Add to LILO + :T Pøidat do LILO + !M_DEFINE + :E Define + :T Definovat + !T_BOOTCONF + :E Boot configuration + :T Startovací konfigurace + !I_BOOTCONF + :E You are allowed to define the default\nboot mode of this computer + :T Zde lze definovat implicitní\nstartovací mód pro tento poèítaè + !E_TERMINFO + :E No valid TERM definition\r\n + +probably caused by an improper\r\n + +terminfo database.\r\n + :T Chybí platná definice TERMu\r\n + +mo¾ná zpùsobená nesprávnou\r\n + +databází terminfo.\r\n + !M_TWORKSTATION + :E the workstation + :T pracovní stanice + !M_BOOTLOGS + :E the boot logs + :T startovací záznamy + !M_START + :E Start + :T Start + !M_VIEW + :E View + :T Zobrazit + !I_SELONE + :E Select one of the operation mode below\n + +or configure the default mode.\n + +Current system profile version is '%s'. + :T Vyberte operaèní mód nebo nastavte\n + +implicitní mód. Aktuální verze\n + +systémového profilu je '%s'. + !I_WARN + :E \nUnless you select something within %d seconds\n\"%s\" will start automaticly + :T \nPokud nezvolíte jednu z mo¾nosti do %d vteøin\n\"%s\" nastartuje automaticky + !T_OPERMODE + :E Operation mode + :T Operaèní mód + !E_NOLOG + :E No log available + :T Soubor se záznamy není k dispozici + !T_BOOTLOG + :E boot log + :T Startovací záznamy + !I_BOOTLOG + :E These are the recording of the previous\nboot of this machine + :T Toto je zíznam pøedchozího startu\ntohoto poèítaèe + !E_EMPTYLOG + :E Empty log + :T Prázdný soubor + !E_IVLDPATH + :E Invalid path of lilo.conf: %s\n + +expected something at least as long\n + +as %s\n + +and ending with %s + :T Neplatná cesta k souboru lilo.conf: %s\n + +Oèekává se cesta alespoò jako %s\n + +a konèící %s + !F_ROOTPART + :E root partition + :T Koøenový oddíl + !F_RAMSIZE + :E Ramdisk size (opt) + :T Velikost ramdisku (nepov) + !F_BOOTMODE + :E boot mode + :T Startovací mód + !F_VGA + :E VGA mode + :T VGA mód + !F_NORMAL + :E normal + :T normální + !F_STD8025 + :E standard 80x25 + :T standardní 80x25 + !F_BOOTOPT + :E Boot options + :T Mo¾nosti pro boot + !F_LILOUSED + :E LILO is used to boot this system + :T Pro startování tohoto systému se pou¾ívá LILO + !F_INSTBOOT + :E Install boot sector on + :T Nainstalovat boot sektor na + !F_BOOTREC + :E boot record of the current root partition + :T Boot record aktuálního koøenového oddílu + !F_MASTERIDE + :E Master boot record on IDE systems + :T Master boot record na IDE systémech + !F_MASTERSCSI + :E Master boot record on SCSI systems + :T Master boot record na SCSI systémech + !F_FD0 + :E /dev/fd0 + :T /dev/fd0 + !F_BIOSMODE + :E Bios boot mode + :T Startovací mód BIOS + !F_BOOTDELAY + :E Boot delay in seconds + :T Èekat pøi startu (sekundy) + !F_MSGFILE + :E Message file(opt) + :T Soubor se zprávou (nepov) + !T_DEFAULTS + :E Lilo defaults + :T Implictní hodnoty pro LILO + !F_LABEL + :E Label + :T Jmenovka + !F_KERNELIMAGE + :E Kernel image file + :T Soubor s kernelem + !F_PARTBOOT + :E partition to boot + :T oddíl pro start + !E_IVLDPART + :E Partition %s is either invalid\nor not a linux partition\n + :T Oddíl %s je buï neplatný\nnebo to není oddíl s Linuxem\n + !E_ROOTPNEED + :E You must specify the root partition + :T Nutno uvést koøenový oddíl + !E_IVLSECTOR + :E Invalid partition or device for boot sector\ninstallation + :T Neplatný oddíl nebo zaøízení pro instalaci boot sector + !T_ACTLILO + :E Activating LILO configuration + :T Aktivuji konfiguraci LILO + !Q_ACTLILO + :E Activating LILO change the way your\n + +machine is booting.\n + +Do I activate the configuration ? + :T Aktivace LILO zmìní zpùsob\n + +startování systému.\n + +Má se konfigurace aktivovat? + !F_HOWBOOT + :E How it boots + :T Jak bootovat + !F_NEWDEFAULT + :E new default bootable setup + :T nové nastavevení implicitního bootování + !F_REPLCUR + :E replace the current bootable setup + :T nahradit aktuální nastavení bootovaní + !F_SELSETUP + :E selectable setup + :T výbìr z mo¾ných nastavení + !F_WHERETOCOPY + :E Where to copy the kernel file + :T Kam nakopírovat soubor s kernelem + !F_OPTIONS + :E Options + :T Mo¾nosti + !T_ADDINGKERN + :E Adding a new kernel to LILO + :T Pøídávám nový kernel do LILO + !I_ADDINGKERN + :E You have already a working LILO\nand you want to upgrade your kernel + :T LILO u¾ funguje\na chcete upgradovat kernel + !E_KERNNEEDED + :E You must specify a kernel file + :T Nutno zadat soubor s kernelem + !E_LABELNEEDED + :E You must specify a label + :T Nutno uvést jmenovku + !E_LABELEXIST + :E The label is already used + :T Tato jmenovka se u¾ pou¾ívá + !E_ENOENT + :E File %s does not exist + :T Soubor %s neexistuje + !E_BADPATH + :E Bad path, must be under %s/ + :T Neplatná cesta, musí být v adresáøi %s/ + !T_REPLACE + :E Replacing existing kernel file + :T Nahrazuji existující soubor s kernelem + !I_REPLACE + :E ok to overwrite it ? + :T Mù¾e se pøepsat? + !E_NOCOMPILED + :E No kernel recently compiled available + :T Není k dispozici ¾ádný nový kernel + !T_DEFKERN + :E Default boot configuration + :T Konfigurace implicitního bootování + !I_DEFKERN + :E Pick the configuration which will become\nthe default LILO configuration + :T Vyberte konfiguraci, která se má\npou¾ívat jako implicitní v LILO + !M_GR_NET + :E Graphic & Network + :T Grafické rozhraní a sí» + !M_GRONLY + :E Graphic only + :T Grafické rozhraní + !M_XTERMINAL + :E X terminal + :T X terminál + !M_TX_NET + :E Text mode & Network + :T Textový mód a sí» + !M_TXONLY + :E Text mode only + :T Textový mód + !M_MAINTENANCE + :E Maintenance mode + :T Mód pro údr¾bu + !M_NOTCONF + :E (Not configured) + :T (Nenakonfigurováno) + !P_BOOTMODE + :E change the boot mode + :T Zmìna bootovacího módu + !T_DEFOPER + :E Default operation mode + :T Implicitní operaèní mód + !F_DELAY + :E Delay to activate + :T Èekání na aktivaci + !T_BOOTCMODE + :E Boot mode configuration + :T Konfigurace bootovacího módu + !I_BOOTCMODE + :E Select the default operation mode\n + +and a timeout. A timeout of 0 means\n + +to wait forever.\n + :T Vyberte implicitní operaèní mód\n + +a èekací dobu. Èekací doba 0 znamená\n + +èekat libovolnì dlouho.\n + !N_NOTCONF + :E This runlevel is not yet configured + :T Tento runlevel není zatím nakonfigurován + !M_NONET + :E No network + :T Bez sítì + !M_CLIENT + :E Client + :T Klient + !M_SERVER + :E Server + :T Server + !M_TEXTMODE + :E Text mode + :T Textový mód + !M_WORKSTATION + :E Workstation + :T Pracovní stanice + !M_XTERM + :E X terminal + :T X terminál + !F_TITLE + :E Title + :T Titulek + !F_RUNLEVEL + :E init runlevel + :T Inicializace runlevelu + !F_NETMODE + :E Network mode + :T Sí»ový mód + !F_GRMODE + :E Graphic mode + :T Grafický mód + !T_RUNDEF + :E Runlevels definition + :T Definice runlevelù + !I_RUNDEF + :E You are allowed to name\nthe different runlevel for this machine\n + :T Zde lze pojmenovat\trùzné \"runlevels\" pro tento poèítaè\n + !E_IVLDEF + :E Invalid definition + :T Neplatná definice + !E_IVLDELAY + :E Invalid delay + :T Neplatná doba èekání + !E_SHORTDELAY + :E Delay too short, minimum 5 seconds + :T Pøíli¹ krátká doba èekání, minimálnì 5 vteøin + !T_VERBOSE + :E Verbose level + :T Úroveò vypisovaných informací + !F_SECTION + :E Sections + :T Sekce + !F_COMMAND + :E Commands + :T Pøíkazy + !F_STDERR + :E Command's error messages + :T Chybové zprávy pøíkazu + !F_STDOUT + :E Command's output + :T Výstup pøíkazu + !F_EXPLAN + :E Explanations + :T Vysvìtlivky + !F_NOTDONE + :E Not done + :T Není hotovo + !F_WHY + :E Why + :T Dùvod + !F_TOPICS + :E Topics + :T Témata + !E_KERNBAD + :E %s is not a file + :T %s není soubor + !M_MODE + :E Mode + :T Mód + !M_LILOT + :E Lilo + :T LILO + !F_INITRD + :E Initial ramdisk(opt) + :T Poèáteèní ramdisk (nepov) + !F_LINEAR + :E Boot table encoding + :T Kódování bootovací tabulky + !E_IVLDRMDSKSIZE + :E Invalid ramdisk size + :T Neplatná velikost ramdisku + !I_PROMPT + :E Present the LILO boot: prompt + :T Aktuální prompt LILO + !F_PROMPTTIMEOUT + :E Prompt timeout in seconds + :T Èekací doba výzvy ve vteøinách + !M_VERCONFIG + :E configuration version + :T Verze konfigurace + !M_SELECT + :E Select + :T Vybrat + !I_READONLY + :E Read only + :T Jen pro ètení + !F_DIATIMEOUT + :E Prompt timeout + :T Èekání pøi výzvì + !T_LINUX + :E Linux boot configuration + :T Konfigurace bootu Linuxu + !I_OTHEROS + :E You control how to boot another operating\n + +system on one partition of your harddrive(s) + :T Zde lze nastavit, jak bootovat jiný\n + +operaèní systém z disku + !T_OTHEROS + :E Other operating system setup + :T Nastavení ostatních operaèních systémù + !T_LILOCONFS + :E Lilo linux configurations + :T Konfigurace Linuxu v LILO + !I_LINUXOS + :E You control how to boot one Linux\nconfiguration + :T Zde lze nastavit, jak se má nabootovat\njedna Linuxová konfigurace + !H_LILOCONFS + :E Label\tPartition\tKernel + :T Jmenovka\tOddíl\nKernel + !M_LILOLINUX + :E LILO linux configurations + :T Konfigurace Linuxu v LILO + !M_LILOOTHERS + :E LILO other OS configurations + :T Konfigurace ostatních OS v LILO + !T_BASE + :E Base options + :T Základní mo¾nosti + !T_EXTRALILO + :E Extra options + :T Roz¹íøené mo¾nosti + !E_IMAGE + :E Kernel file %s is missing + :T Chybí soubor s kernelem %s + !H_LILOOTHERS + :E Label\tPartition + :T Jmenovka\tOddíl + !T_LILOOTHERS + :E Lilo other OSs configurations + :T Nastavení ostatních OS v LILO + !E_DUPLILOLABEL + :E Duplicate LILO label: %s + :T Duplikovaná jmenovka LILO: %s + !F_ASKRUN + :E Boot time menu enabled + :T Povolit startovací nabídku + !F_PASSWORD + :E Password (opt) + :T Heslo (nepov) + !F_RESTRICTED + :E Restricted access + :T Omezený pøístup diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/conectiva.dic linuxconf-1.15/messages/cz/conectiva.dic *** linuxconf-1.14r4/messages/cz/conectiva.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/conectiva.dic Fri Mar 26 10:47:05 1999 *************** *** 0 **** --- 1,25 ---- + @version 0 + !T_USAGE + :E conectiva usage\n\nconectiva --option ...\n + :T Pou¾ití conectiva\n\nconectiva --option ...\n + !I_REMOVING + :E Removing device configuration: %s\n + :T Odstraòuji nastavení zaøízení: %s\n + !T_AUTHENTICATE + :E Authentication + :T Oveøení + !I_AUTHREQ + :E Authentication required\nfor user %s + :T Nutné oveøení pro u¾ivatele %s + !T_NEWPASS + :E Changing password + :T Zmìna hesla + !I_NEWPASS + :E Changing the password for user %s + :T Zmìna hesla u¾ivatele %s + !I_DISABLED + :E The account was disabled\n + :T Úèet byl zablokován\n + !I_ENABLED + :E The account was enabled\n + :T Úèet byl povolen\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/dhcpd.dic linuxconf-1.15/messages/cz/dhcpd.dic *** linuxconf-1.14r4/messages/cz/dhcpd.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/dhcpd.dic Fri Apr 9 12:53:24 1999 *************** *** 0 **** --- 1,205 ---- + @version 0 + !M_DHCP + :E DHCP/BOOTP server + :T DHCP/BOOTP server + !F_ROUTERS + :E Default gateways + :T Implicitní brány + !F_DNS + :E Name servers(DNS) + :T Name servery(DNS) + !F_DOMAIN + :E Domain name + :T Jméno domény + !F_SUBNETMASK + :E Netmask + :T Sí»ová maska + !F_TIMEOFFSET + :E Time offset + !F_LOGSERVERS + :E Log servers + :T Servery pro logování + !F_LPRSERVERS + :E Print servers + :T Tiskové servery + !F_TIMESERVERS + :E Time servers + :T Servery pro èas + !F_COOKIESERVERS + :E Cookie servers + :T Servery pro cookies + !F_DHHOSTNAME + :E Host name + :T Jméno poèítaèe + !F_WINS + :E Name servers(Netbios) + :T Name servery(Netbios) + !E_DHPARSE + :E Parse error in file %s, line %d\n + +\n + +\t%s\n + +\t%*s\n + +\n + +Linuxconf won't be able to use or edit the DHCP\n + +configuration. Please correct. + :T Chyba v souboru %s, øádek %d\n + +\n + +\t%s\n + +\t%*s\n + +\n + +Linuxconf nebude schopen pou¾ít a upravit\n + +nastavení DHCP. Opravte, prosím. + !E_IVLDHOSTIP + :E Invalid host IP number %s + :T Neplatná IP adresa poèítaèe %s + !E_IVLDNETIP + :E Invalid network IP number %s + :T Neplatná sí»ová IP adresa %s + !F_NETWORK + :E Network number + :T Èíslo sítì + !F_DYNBOOTP + :E Allocate to BOOTP clients + :T Vyhradit pro klienty BOOTP + !F_STARTIP + :E IP range start + :T Zaèátek intervalu IP + !F_STOPIP + :E IP range stop + :T Konec intervalu IP + !F_DEFLEASETIME + :E Default lease time + :T Implicitní doba pronájmu + !F_MAXLEASETIME + :E Max lease time + :T Maximální doba pronájmu + !T_ONESUB + :E One subnet definition + :T Definice jedné podsítì + !I_ONESUB + :E + :T + !F_IDENT + :E Server identification + :T Identifikace serveru + !T_DHCPDEF + :E DHCP defaults + :T Základní parametry DHCP + !I_DHCPDEF + :E You can enter the default setting which will\n + +be shared by all subnets setups unless overriden\n + :T Zde lze nastavit implicitní nastavení,\n + +které bude sdíleno v¹emy podsìmi, pokud není uvedeno jinak.\n + !M_EDIT + :E Edit + :T Upravit + !M_DEFOPT + :E defaults + :T Implicitní nastavení + !T_SUBNETS + :E Subnets + :T Podsítì + !H_SUBNETS + :E Network\tNetmask\tAlloc from\t->\tTo + :T Sí»\tMaska\tAllokovat z\t->\tdo + !T_BOOTPHOST + :E Bootp hosts + :T Poèítaèe pro BOOTP + !B_ADDSUBNET + :E AddNet + :T Pøidej sí» + !B_ADDBOOTP + :E AddBootp + :T Pøidej BOOTP + !T_DHCPCONF + :E Dhcp configuration + :T Konfigurace DHCP + !I_DHCPCONF + :E You can define how IP numbers are allocated\n + +dynamicly to workstation on your net.\n + +This is a major time saver when managing an IP network\n + +with more than a few computers. + :T Zde lze definovat jak se alokují IP adresy\n + +dynamicky pro stanice na této síti.\n + +Toto je významé u¹etøení èasu pøi správì IP sítì,\n + +ve které je více poèítaèù. + !F_NETMASK + :E netmask + :T Sí»ová maska + !E_NOMATCH + :E This subnet is not associated with any\n + +network adaptor (basic host information).\n + +This means that IP numbers in this subnet\n + +will only by allocated to some other network\n + +using a dhcp relay to this dhcpd server + :T Tato podsí» není asociovaná se ¾ádnou sí»ovou\n + +kartou (zakladní informace o poèítaèi).\n + +To znamená, ¾e IP adresy této podsítì\n + +budou alokovány pro nìkterou jinou sí»\n + +pou¾itím pøedávání DHCP na tento DHCPD server. + !M_UPDATEDNS + :E DNS with dhcp hosts + :T DNS s poèítaèi konfigurovanými DHCP + !M_UPDATE + :E Update + :T Obnovit + !H_SHOWALLOC + :E Host\tIp\tMac address\tStarts\tStops + :T Poèítaè\tIP\tHard. adresa\tZaèátek\tKonec + !T_SHOWALLOC + :E Lease allocations + :T Alokace pronájmù + !M_VIEWLEASES + :E DHCP allocations + :T Alokace DHCP + !M_VIEW + :E View + :T Zobrazit + !E_USAGE + :E module dhcpd\n\n --updatedns\n + :T modul dhcpd\n\n --updatedns\n + !E_NODNSSUPPORT + :E The DNSCONF_API is not registered, can't update the DNS\n + +(probably because the dnsconf module is not enabled) + :T DNSCONF_API není registrované, nelze obnovit DNS\n + +(pravdìpodobnì není modul dnsconf povolen) + !N_UPDATED + :E DNS was updated + :T DNS upravena + !N_UPTODATE + :E DNS was already up to date + :T Zmìny DNS nejsou potøeba + !T_BASIC + :E Basic + :T Základní + !T_SERVERS + :E Servers + :T Servery + !T_OTHERS + :E Others + :T Ostatní + !F_DEFDNSDOM + :E Update DNS domain + :T Obnovit DNS doménu + !E_DNSDOM + :E You must specify in which DNS domain\nDHCP host must be inserted + :T Nutno uvést, do ktéré DNS domény\nse má tento DHCP poèítaè vlo¾it. + !T_DNS + :E Dns + :T DNS + !F_UPDDNS + :E Update DNS + :T Obnovit DNS + !I_UPDDNS + :E from cron + :T z cronu + !E_CANUPDDNS + :E The DNS can't be update from the dhcp server\n + +unless you provide the domain in which to\n + +register hosts. + :T DNS nelze upravit z DHCP serveru,\n + +pokud nedefinujete doménu, v které se\n + +mají poèítaèe registrovat. + !F_NETBIOSNODETYPE + :E Node type(Netbios) + :T Typ uzlu(Netbios) diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/diajava.dic linuxconf-1.15/messages/cz/diajava.dic *** linuxconf-1.14r4/messages/cz/diajava.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/diajava.dic Fri Mar 26 10:46:38 1999 *************** *** 0 **** --- 1,10 ---- + @version 0 + !E_REMVER + :E Incompatible version of the GUI frontend\n + :T Nekompatibilní verze u¾ivatelského interfacu\n + !E_REMEXIT + :E remadmin (GUI frontend) exiting abnormaly\n + :N remadmin (u¾ivatelský interface) skonèil s chybou\n + !E_REMERR + :E Error message from remadmin :%s + :T Chybová zpráva od remadmin :%s diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/dialog.dic linuxconf-1.15/messages/cz/dialog.dic *** linuxconf-1.14r4/messages/cz/dialog.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/dialog.dic Fri Apr 9 12:32:07 1999 *************** *** 0 **** --- 1,156 ---- + @version 0 + !E_NOHELPFILE + :E Help file %s not yet written + :T Soubor s nápovìdou %s nebyl zatím napsán + !B_YES + :E Yes + :T Ano + !B_NO + :E No + :T Ne + !B_OK + :E Ok + :T Ok + !B_ACCEPT + :E Accept + :T Akceptuj + !B_CANCEL + :E Cancel + :T Zru¹ + !B_QUIT + :E Quit + :T Konec + !B_SAVE + :E Save + :T Ulo¾ + !B_ADD + :E Add + :T Pøidej + !B_DEL + :E Del + :T Sma¾ + !B_INS + :E Ins + :T Vlo¾ + !B_EDIT + :E Edit + :T Uprav + !B_RESET + :E Reset + :T Restartuj + !B_HELP + :E Help + :T Nápovìda + !E_MISMATCH + :E dialog state mismatch + :T nesouhlasí stav dialogového okna + !B_MORE + :E More + :T Více + !B_USR1 + :E Usr1 + !B_USR2 + :E Usr2 + !B_USR3 + :E Usr3 + !E_INLIST + :E The value must be taken from the list + :T Ze seznamu musí být vybrána hodnota + !E_NOEMPTY + :E This field may not be empty + :T Tato polo¾ka nemù¾e být prázdná + !E_NOPT + :E No decimal point allowed + :T Desetinná èárka není dovolena + !E_NONDIGIT + :E Only digits and the minus sign are allowed + :T Povolené jsou jen èíslice a znaménko mínus + !E_NOTTY + :E **** No tty available ... linuxconf quitting + :T **** ®ádné tty k dispozici ... linuxconf konèí + !E_IVLDHTMLREQ + :E Invalid html request + :T Nesprávný HTML po¾adavek + !L_FREQUEST + :E File request: %s + :T Po¾adavek na soubor: %s + !L_REQUEST + :E Request: %s + :T Po¾adavek: %s + !F_PREFIX + :E Item's prefix + :T Pøedpona polo¾ky + !T_PREFIX + :E Filter prefix + :T Pøedpona filtru + !I_PREFIX + :E The list of records is long, so you\n + +may want to filter it a bit by providing\n + +a prefix to search. An empty prefix means to show\n + +all records. + :T Seznam záznamù je pøíli¹ dlouhý, tak¾e\n + +lze definovat filter pomocí pøèpony.\n + +Prázdná pøedpona znamená zobrazit \n + +v¹echny záznamy + !T_HELPLIST + :E Help list + :T Seznam nápovedy + !I_HELPLIST + :E Pick one value + :T Vyber hodnotu + !X_YES + :E Yes + :T Ano + !X_NO + :E No + :T Ne + !X_ACCEPT + :E Accept + :T Akceptuj + !X_CANCEL + :E Cancel + :T Zru¹ + !X_QUIT + :E Quit + :T Konec + !X_SAVE + :E Save + :T Ulo¾ + !X_ADD + :E Add + :T Pøidej + !X_DEL + :E Del + :T Sma¾ + !X_INS + :E Ins + :T Vlo¾ + !X_EDIT + :E Edit + :T Uprav + !X_RESET + :E Reset + :T Vrátit + !X_MORE + :E More + :T Více + !X_OKEY + :E Ok + :T Ok + !E_GUIVER + :E Invalid GUI protocol version + :T Nesprávná verze GUI protokolu + !E_NOEMPTYNAME + :E The field `%s`\nmay not be empty + :T Polo¾ka `%s`\nnemù¾e být prázdná + !B_USR4 + :E Usr4 + !B_USR5 + :E Usr5 + !B_USR6 + :E Usr6 + !B_USR7 + :E Usr7 + !X_HELP + :E Help + :T Nápovìda diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/dialout.dic linuxconf-1.15/messages/cz/dialout.dic *** linuxconf-1.14r4/messages/cz/dialout.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/dialout.dic Thu Apr 8 04:18:59 1999 *************** *** 0 **** --- 1,517 ---- + @version 0 + !I_SETDYNADDR + :E Setting %s to 1\n + :T Nastavuji %s na 1\n + !I_GENFILE + :E Generating config file %s\n + :T Generuji konfiguraèní soubor %s\n + !X_KILLDIALD + :E Killing on demand IP for config %s\n + :T Ru¹ím IP na po¾ádání pro konfiguraci %s\n + !E_DIALDCONUID + :E netconf --setupdiald can only be used by root (by diald)\n + :T netconf --setupdiald mù¾e pou¾ívat jedinì root (pomocí diald)\n + !M_SETDIALDRT + :E Setting routes for PPP on demand dialout %s\n + :T Nastavení smìrování pro PPP na po¾ádání %s\n + !E_TWODEFROUTE + :E Can't have two dialup configuration with default route\n + +at the same time. Deactivating dialup config %s\n + :T Nelze mít dvì konfigurace pro vytáèení s implicitním smìrováním.\n + +Vypínám konfiguraci vytáèení %s\n + !E_TWODEFAULT + :E Can't activate on demand dialup for %s: duplicate default route\n + :T Nelze aktivovat vytáèení na po¾ádání %s: duplikované implicitní smìrování\n + !X_DIALDCLEAN + :E Cleaning on demand IP (diald) work files\n + :T Èistím pracovní soubory pro IP na po¾ádání (diald)\n + !M_dialout + :E PPP or SLIP dialout + :T Pøipojení PPP nebo SLIP + !T_USAGE + :E Module dialout\n + +\n + + --dialctl\n + + --disconnect config\n + + --connect config [ --fore ]\n + :T Modul dialout\n + +\n + + --dialctl\n + + --disconnect config\n + + --connect config [ --fore ]\n + !F_BAUD + :E Baud rate + :T Rychlost v baudech + !F_SERIALDEF + :E Serial device + :T Sériové zaøízení + !F_FIRSTCOM + :E first standard serial port COM1 + :T První standardní sériový port COM1 + !F_SECONDCOM + :E Second standard serial port COM2 + :T Druhý standardní sériový port COM2 + !F_COM1M + :E COM1 when using mgetty + :T Pro mgetty pou¾ít COM1 + !F_COM2M + :E COM2 when using mgetty + :T Pro mgetty pou¾ít COM2 + !E_NOSPACE + :E No spaces allowed in the configuration name\n + :T Ve jménì konfigurace nelze pou¾ít mezery\n + !E_DUPCONF + :E The configuration %s\nalready exist\nUse another name\n\n + :T Konfigurace %s\nu¾ existuje\.nPou¾ijte jiné jméno.\n\n + !E_NEEDNAME + :E You must supply\na configuration name\n\n + :T Nutno zadat jméno\nkonfigurace\n\n + !E_NEEDDEV + :E You must supply a device (/dev/xxxx)\n\n + :T Nutno zadat zaøízení (/dev/xxxx)\n\n + !E_LCPECHO + :E You must supply a value pair\n delay,retry for the LCP echo protocol + :T Nutno zadat dvojici hodnot\n èekání,opakování pro LCP echo protokol + !E_PPPNEEDIP + :E You must enter an IP number for each side\n of the connexion\n + :T Nutno zadat IP adresu pro obì strany\nspojení.\n + !E_SSHSECT + :E You must fill all fields (except encryption)\nof the PPP over SSH section\n + :T Nutno vyplnit v¹echny polo¾ky (kromì ¹ifrování)\npro pou¾ití PPP pomocí SSH\n + !F_IPDST + :E Network or host + :T Sí» nebo poèítaè + !F_IPMSK + :E Netmask(opt) + :T Sí»ová maska (nepov) + !N_BASE + :E Base info + :T Základní informace + !F_PPPNAME + :E Configuration name + :T Jméno konfigurace + !F_CONNECTTYPE + :E Connection type + :T Typ pøipojení + !F_PPPSERIAL + :E PPP using serial port/modem + :T PPP pomocí sériového portu/modemu + !F_PPPSSH + :E PPP over a secure shell (ssh) + :T PPP pomocí secure shell (ssh) + !F_SLIP + :E SLIP + :T SLIP + !F_PLIP1 + :E PLIP1 (IP over printer port 1) + :T PLIP1 (IP pøes paralelní port 1) + !F_PLIP2 + :E PLIP2 (IP over printer port 2) + :T PLIP2 (IP pøes paralelní port 2) + !F_PPP_LOGIN + :E Login + :T Pøihlá¹ení + !F_PPP_PAP + :E PAP + :T PAP + !F_PPP_CHAP + :E CHAP + :T CHAP + !F_PPP_NONE + :E None + :T ®ádné + !F_PPPAUTH + :E PPP authentication + :T Ovìøení PPP + !F_PPP_MANUAL + :E Manual + :T Ruènì + !F_PPP_DEMAND + :E On demand + :T Na po¾ádání + !F_PPP_24on24 + :E On boot + :T Pøi startu + !F_PPPTYPE + :E Operation mode + :T Pracovní mód + !F_OURIP + :E Our IP number(opt) + :T Na¹e IP adresa (nepov) + !F_REMOTEIP + :E Remote IP number(opt) + :T Vzdálená IP adresa (nepov) + !F_LOGIN + :E login + :T Pøihlá¹ení + !F_PASSWORD + :E Password + :T Heslo + !T_LOGINCHAT + :E Chat + :T Rozhovor + !F_LOGINKEY + :E Expected login key + :T Oèekávat pøihla¹ovací výzvu + !F_PASSWDKEY + :E Expected password key + :T Oèekávat výzvu pro heslo + !F_LOGINOK + :E Expected welcome (opt) + :T Oèekávat pøivítání (nepov) + !F_TRIGGER + :E Trigger command (opt) + :T Spou¹tìcí pøíkaz (nepov) + !F_LOGINFAIL + :E Login fail key (opt) + :T Klíè pøi selhání pøihlá¹ení (nepov) + !F_LOGINCHAT + :E Custom login chat (opt) + :T Vlastní pøihla¹ovací rozhovor (nepov) + !N_MODEM + :E Modem + :T Modem + !T_MODEM + :E Modem specifications + :T Specifikace modemu + !F_MODEMCHAT + :E Modem initialisation + :T Inicializace modemu + !F_PHONE + :E Phone + :T Telefonní èíslo + !F_MODEMCTRL + :E Modem controls + :T Ovládání modemu + !F_LOCKFILE + :E Lock file + :T Soubor se zámkem + !T_FEATURES + :E Features + :T Vlastnosti + !F_IDLETIME + :E Idle time + :T Doba neèinnosti + !F_PPPMRU + :E PPP MRU + :T PPP MRU + !F_PPPMTU + :E PPP MTU(opt) + :T PPP MTU(nepov) + !F_RUNPPPD + :E Run pppd in debug mode + :T Spustit pppd v testovacím módu + !F_RUNCHAT + :E Run chat in debug mode + :T Spustit chat (rozhovor) v testovacím módu + !F_ASYNCMAP + :E Async map + :T Mapování ASYNC + !F_LCPECHO + :E LCP echo + :T Echo LCP + !F_NOLCPECHO + :E Don't use LCP echo protocol + :T Nepou¾ívat protokol LCP echo + !F_ECHO15_3 + :E Send lcp echo every 15, hangup after 3 failures + :T Poslat LCP echo ka¾dých 15, zavìsit po 3 selháních. + !F_OTHERPPP + :E Other PPP options + :T Ostatní mo¾nosti PPP + !F_CONCMD + :E Post-connect cmd(opt) + :T Pøíkaz po pøipojení (nepov) + !F_PREDISCMD + :E Pre-disconnect cmd(opt) + :T Pøíkaz pøed odpojením (nepov) + !F_DISCMD + :E Post-disconnect cmd(opt) + :T Pøíkaz po odpojeni (nepov) + !N_PPPIPXCONF + :E Ipx + :T IPX + !T_PPPIPXCONF + :E IPX options + :T Mo¾nosti IPX + !F_PPPIPXENABLE + :E Enable IPX over PPP + :T Povolit IPX pøes PPP + !F_PPPIPXNETNUM + :E Network number + :T Èíslo sítì + !F_PPPIPXLOCALNUM + :E Local node number + :T Èíslo lokálního uzlu + !F_PPPIPXREMOTENUM + :E Remote node number + :T Èíslo vzdáleného uzlu + !F_PPPIPXRIPSAP + :E Enable RIP and SAP routing + :T Povolit smìrování RIP a SAP + !F_PPPIPXNLSP + :E Enable NLSP routing + :T Povolit smìrování NLSP + !F_PPPIPXOPTIONS + :E Other ipx options + :T Ostatní mo¾nosti IPX + !N_PPPSSH + :E SSH + :T SSH + !T_PPPSSH + :E PPP over SSH + :T PPP pomocí SSH + !F_SSHHOST + :E Ssh server + :T SSH server + !F_SSHUSER + :E Account + :T Úèet + !F_ACCTPPP + :E PPP account + :T PPP + !F_ACCTSHELL + :E Shell account + :T Normální úèet + !F_ACCTYPE + :E Account type + :T Typ úètu + !F_ENCRYPT + :E Encryption type + :T Typ ¹ifrování + !O_CRYPTDEF + :E Use the default available + :T Pou¾ít implicitní nastavení + !O_CRYPTNONE + :E No encryption + :T Bez ¹ifrování + !O_CRYPTIDEA + :E + :T + !O_CRYPTDES + :E + :T + !O_CRYPT3DES + :E + :T + !O_CRYPTFOUR + :E + :T + !O_CRYPTTSS + :E + :T + !F_COMPRESS + :E Compression + :T Komprese + !F_ENABLE + :E Enabled + :T Povolena + !F_OTHERPPPD + :E Path of the remote pppd + :T Cesta ke vzálenému pppd + !T_IPROUTING + :E Routing + :T Smìrování + !F_DEFROUTE + :E Default route + :T Implicitní smìrování + !F_PROXYARP + :E Proxy Arp (fake remote on local net) + :T Proxy pro ARP (pøedstírat vzdálený systém na lokální síti) + !B_CONNECT + :E Connect + :T Pøipojit + !X_CONNECT + :E Connect + :T Pøipojit + !T_ONEPPPCONF + :E %s PPP/SLIP configuration + :T Konfigurace PPP/SLIP %s + !T_NEWPPP + :E new + :T Nová + !I_ONEPPPCONF + :E One PPP, SLIP or PLIP configuration + :T Konfigurace jednoho spojení PPP, SLIP nebo PLIP + !Q_DELETED + :E Are you sure + :T Jste si jist? + !I_DELETED + :E This configuration will be\ndeleted permanently + :T Tato konfigurace bude trvale\nsmazána + !T_PPPPRIV + :E Dialout (PPP) + :T Vytáèení (PPP) + !T_PPPHEAD + :E Config\tType\tOperation mode\tStatus + :T Konfigurace\tTyp\tOperaèní mód\tStav + !F_CONNECTED + :E Connected + :T Pøipojen + !P_CONFPPP + :E configure PPP and SLIP + :T Nastavit PPP a SLIP + !I_ADDCONF + :E Select [Add] to add a new configuration + :T Pomocí [Pøidej] lze pøidat novou konfiguraci + !T_PPPCONF + :E PPP/SLIP configuration + :T Konfigurace PPP/SLIP + !I_PPPCONF + :E You are allowed to edit/add\n + +PPP and SLIP configuration\n + +which will allow your computer to connect\n + +to PPP and SLIP server + :T Zde lze upravovat/pøidávat\n + +konfigurace PPP a SLIP,\n + +které umo¾òují pøipojit tento\n + +poèítaè na PPP nebo SLIP server. + !P_ACTLINK + :E activate a network link + :T Aktovavat pøipojení + !E_NOCONF + :E No configuration %s + :T Chybí konfigurace %s + !E_IVLOPTION + :E Invalid option\nnetconf --connect site [ --fore ] + :T Neplatný pøepínaè\nnetconf --connect server [ --fore ] + !E_POSTCONUID + :E netconf --postconnect can only be used by root\n + :T netconf --postconnect mù¾e pou¾ívat jedinì root\n + !E_POSTCONUSAGE + :E Invalid usage\n + +netconf --postconnect linuxconf_dialout ppp_config ppp_device\n + +netconf --postconnect linuxconf_dialin user_account ppp_device\n + :T Neplatné pou¾ití\n + +netconf --postconnect linuxconf_dialout ppp_konfigurace ppp_zaøizení\n + +netconf --postconnect linuxconf_dialin úèet ppp_zaøízení\n + !E_PRECONUID + :E netconf --predisconnect can only be used by root\n + :T netconf --predisconnect mù¾e pou¾ívat jedinì root\n + !E_PREDISCONUSAGE + :E Invalid usage\n + +netconf --predisconnect linuxconf_dialout ppp_config ppp_device\n + +netconf --predisconnect linuxconf_dialin user_account ppp_device\n + :T Neplatné pou¾ití\n + +netconf --predisconnect linuxconf_dialout ppp_konfigurace ppp_zaøizení\n + +netconf --predisconnect linuxconf_dialin úèet ppp_zaøízení\n + !T_PPPCONCTRL + :E PPP/SLIP connection control + :T Ovládání PPP/SLIP pøipojení + !I_PPPCONCTRL + :E You are allowed to activate/deactivate\nPPP and SLIP link\n + :T Zde lze pøipojit/odpojit\nPPP a SLIP spojení\n + !P_CTLDIALOUT + :E control dialout + :T Ovládání spojení + !Q_DOCONN + :E Activate PPP link + :T Aktivovat PPP spojení + !I_DOCONN + :E Do you want to activate the network link ? + :T Chcete aktivovat sí»ové spojení? + !Q_DODISCONN + :E Terminate PPP link + :T Odpojit PPP spojení + !I_DODISCONN + :E Do you want to terminate the network link ? + :T Chcete odpojit sí»ové spojení? + !T_PPPCLEANUP + :E Cleaning up PPP pid file\n + :T Èistím soubor s pid pro PPP\n + !M_PPPDIALOUT + :E PPP/Slip dialout + :T Spojení PPP/SLIP + !E_NOIPUPTMP + :E Can't create a temporary file %s.%sxx to update %s\nNo update + :T Nelze vytvoøit doèastný soubor %s.%sxx pro obnovení %s\nObnovení zru¹eno + !T_UPDSCRIPT + :E Update script + :T Skript pro obnovení + !I_UPDSCRIPT + :E The script %s is not compatible with linuxconf\n + +A special section will be added to it preserving\n + +what is already there.\n + +You may refuse to install this modification and\n + +PPP connectivity will still work, but some\n + +functionnalities won't (extra routing for one)\n + +\n + +May I install the modifications ? + :T Skript %s není kompatibilní s Linuxconfem.\n + +Nutno pøidat speciální èást, která ov¹em\n + +neporu¹í dosavadní obsah.\n + +Mù¾ete odmítnout nainstalovat tyto zmìny a\n + +PPP bude nadále pracovat, ale nìkteré funkce,\n + +napø. speciální smìrování, nebudou fungovat.\n + +\n + +Mají se nainstalovat tyto zmìny? + !E_FORMATIPUP + :E File %s is not a script\n + + (no #!/bin/sh or #!/bin/bash at the beginning)\n + +Linuxconf won't try to update it\n + +Please fix manually. Some functionnalities won't be\n + +available\n + + -disconnecting\n + + -extra routing\n + + -connection detection\n + :T Soubor %s není skript\n + + (na zaèátku chybí #!/bin/sh or #!/bin/bash)\n + +Linuxconf se nepokusí provést upravu.\n + +Nutno provést ruènì. Nìkteré funkce nebudou\n + +k dispozici:\n + + -odpojování\n + + -speciální smìrování\n + + -detekce spojení\n + !E_IPPARAM + :E To enable special routing for this PPP\n + +Linuxconf needs pppd 2.2.x which run only on linux 2.x\n + +and higher\n + +Some feature of this ppp connection won't be activated + :T Pro povolení speciálního smìrování pro toto PPP\n + +Linuxconf potøebuje pppd 2.2.x, který funguje jen s Linuxem 2.x\n + +a vy¹¹ím.\n + +Nìkteré vlastnosti tohoto PPP nebudou aktivovány. + !E_NODAEMON + :E %s is not available on this system\n + +or linuxconf is not allowed to use it. Sorry!\n + :T %s není k dispozici na tomto poèítaèi,\n + +nebo ho Linuxconf nemù¾e pou¾ívat. Sorry!\n + !E_PPPNOTACTIVE + :E PPP %s not active + :T PPP %s je aktivní + !E_ONLYPPP + :E Only normal PPP is supported yet! + :T Podporován je zatím jen normální PPP! + !P_RUNCMD + :E Running pre-disconnect commands + :T Spou¹tím pøíkazy pøed odpojením + !E_IVLRT + :E Invalid routing destination %s\n + :T Neplatný cíl smìrování %s\ne + !M_SETRT + :E Setting routes for PPP dialout %s\n + :T Nastavuji smìrování pro PPP %s\n + !I_ADDBYLNX + :E Added by linuxconf + :T Pøidáno Linuxconfem + !I_UPDPAP + :E Updating file %s for PPP configuration %s\n + :T Obnovuji soubor %s pro PPP konfiguraci %s\n + !E_SETETH0DEF + :E netconf --setdevdef can only be used by root\n + :T netconf --setdevdef mù¾e pou¾ívat jedinì root\n + !M_PPPCTRL + :E Activate/terminate PPP links + :T Aktivace/ukonèení spojení PPP + !F_ALTCHAT + :E Alternat chat script + :T Alternativní skript pro rozhovor + !F_NO + :E No + :T Ne + !F_YES + :E Yes + :T Ano + !F_USEPATCH + :E Using patched SSH? + :T Pou¾ít upravený SSH? diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/dnsconf.dic linuxconf-1.15/messages/cz/dnsconf.dic *** linuxconf-1.14r4/messages/cz/dnsconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/dnsconf.dic Fri Apr 9 12:49:36 1999 *************** *** 0 **** --- 1,479 ---- + @version 0 + !F_IPADR + :E IP address + :T IP adresa + !T_FORWARDERS + :E Forwarders + :T Pøedávat + !I_FORWARDERS + :E Your DNS may delegate to other DNS\n + +the resolution of external domain.\n + +Just enter the IP number of each DNS\n + +in priority order. + :T DNS mù¾e delegovat po¾adavky o externích\n + +doménách na jiné DNS. Staèí zadat jejich\n + +IP adresy podle priority. + !M_DOMAINS + :E domains + :T Domény + !M_IPREV + :E IP reverse mappings + :T Reverzní mapování IP + !M_SECOND + :E secondaries + :T Sekundární servery + !M_FORWARD + :E forwarders + :T Pøedávání dotazù + !M_HOSTINFO + :E (quick edit) + :T (quick edit) + !M_CONFIG + :E Configure + :T Nastavit + !ADDEDIT + :E Add/Edit + :T Pøidat/Upravit + !T_DNSCONF + :E DNS configurator + :T Konfigurátor DNS + !I_DNSCONF + :E This package allows you to configure\na Domain Name Server (DNS)\n + :T Tato obrazovka umo¾òuje konfigurovat\nDomain Name Server (DNS)\n + !Q_NODNS + :E No DNS configured + :T DNS není nakonfigurováno + !I_NODNS + :E Do you want to create one ? + :T Chcete ho vytvoøit? + !N_DNSUSAGE + :E Module dnsconf\n + +\n + + --deldomain domain\n + + --newdomain domain [ template_domain ]\n + + --set host ip_number [ip_number ...]\n + + --set host --fromrange range\n + + --setcname host real-host\n + + --setfromip host ip_number\n + + --setmx host/domain mailserver ...\n + + --setns host/domain dns_server [ secondary_dns ... ]\n + + --unset host\n + +\n + + without argument start the interactive mode\n + :T Modul dnsconf\n + +\n + + --deldomain doména\n + + --newdomain doména [ ¹ablona_domény ]\n + + --set poèítaè ip_adresa [ip_adresa ...]\n + + --set poèítaè --fromrange interval\n + + --setcname poèítaè skuteèný_poèítaè\n + + --setfromip poèítaè ip_adresa\n + + --setmx poèítaè/doména mailserver ...\n + + --setns poèítaè/doména dns_server [ sekundární_dns ... ]\n + + --unset poèítaè\n + +\n + + bez argumentù se spustí interaktivnì\n + !E_NODNS + :E No DNS currently configured + :T Momentálnì neí ¾ádné DNS nakonfigurováno + !E_NODOMAINS + :E Not applicable to any domain in the DNS\n + :T Nepou¾itelné pro ¾ádnou doménu v DNS\n + !F_HOST_DOM + :E host or sub-domain + :T poèítaè nebo subdoména + !F_NICKNAME + :E is a nick name for + :T pøezdívka pro + !F_IPADRS + :E IP addresses + :T IP adresy + !F_DNSADV + :E DNS advertising(NS) + :T informace o DNS (NS) + !F_EMAILADV + :E EMAIL advertising(MX) + :T informace o e-mailu (MX) + !T_HOSTINFO + :E Host information + :T Informace o poèítaèi + !I_HOSTINFO + :E Enter a host name + domain\n + +and its IP numbers (at least one)\n + +and all DNS's table will be updated\n + :T Vlo¾te jméno poèítaèe + doménu\n + +a jeho IP adresy (alespoò jednu)\n + +a v¹echny tabulky DNS budou pøíslu¹nì upraveny\n + !Q_CONFIRM + :E Please confirm + :T Potvrïte + !I_CONFIRM + :E Are you sure you want to\ndelete this entry + :T Jste si jist, ¾e chcete\nsmazat tento záznam + !Q_HOSTNAME + :E Host or domain specification + :T Specifikace poèítaèe nebo domény + !I_HOSTNAME + :E Enter the name of a host or the name of a\nsub-domain. + :T Vlo¾te jméno poèítaèe nebo jméno subdomény. + !F_NETNUM + :E Network number + :T Èíslo sítì + !F_DOMAIN + :E Domain + :T Doména + !F_MAINSERV + :E Main server + :T Primární server + !F_ADMINMAIL + :E Administrator email + :T E-mail administrátora + !F_SECREQ + :E Secondaries requirements + :T Po¾adavky na sekundární servery + !F_REFRESH + :E Refresh + :T Obnovování + !F_RETRY + :E Retry + :T Dal¹í pokus + !F_EXPIRE + :E Expire + :T Platnost + !F_EVERYHOSTS + :E Every hosts requirements + :T Po¾adavky na ka¾dý poèítaè + !F_TTL + :E Time to live + :T Time to live + !T_PRIMSPEC + :E Primary specification + :T Specifikace primárního serveru + !I_PRIMSPEC + :E You must enter a domain name\n + :T Nutno zadat jméno domény\n + !E_NODOMAIN + :E Fill at least the domain\nand the first IP address + :T Nutno vyplnit alespoò doménu\na první IP adresu + !T_PRIMARYS + :E Primaries + :T Primární servery + !I_PRIMARYS + :E You are allowed to edit/add/remove primaries\n + :T Zde lze upravovat/pøidávat/mazat primární servery\n + !I_ADDPRIM + :E Select [Add] to define a new primary + :T Pomocí [Pøidej] lze definovat nový primární server + !F_IPSERV + :E IP address of the server + :T IP adresa serveru + !T_SECSPEC + :E Secondary specification + :T Specifikace sekundárních serverù + !I_SECSPEC + :E You must enter a domain and at least IP address\n + +of one DNS server of that domain\n + :T Nutno zadat doménu a alespoò IP adresu\n + +jednoho DNS serveru této domény\n + !E_FILLDOM + :E Fill at least the domain\nand the first IP address + :T Nutno vyplnit alespoò doménu\na první IP adresu + !T_SECONDARYS + :E Secondaries + :T Sekundární servery + !I_SECONDARYS + :E You are allowed to edit/add/remove secondaries\n + :T Zde lze upravovat/pøidávat/mazat sekundární servery\n + !I_ADDSEC + :E Select [Add] to add one secondary spec + :T Pomocí [Pøidej] lze pøidat jeden sekundární server + !M_IPRANGE + :E IP allocation space + :T Prostor pro alokování IP adres + !T_IPRANGE + :E IP range definitions + :T Definice rozmezí IP adres + !I_IPRANGE + :E You can define here the range of IP numbers available\n + +to this DNS. It won't limit your ability of assigning\n + +the IP number you want, but will allow you to find\n + +an available one easily later. + :T Zde lze definovat intervaly IP adres, které jsou\n + +k dispozici pro tuto DNS. To ov¹em neovlivní mo¾nost\n + +zadávat IP adresy, jaké chcete, ale umo¾ní to pozdìji lehce\n + +najít ty, které jsou volné. + !F_IPRANGE + :E One IP range + :T Jeden interval IP adres + !F_RANGECOMMENT + :E Id/description + :T Jméno/Popis + !F_RANGEFULL + :E None available + :T ®ádná IP k dispozici + !E_IVLDIPMAP + :E Invalid IP range definition %s\nExpected X.Y.Z.W1-W2\nor X.Y.Z1.W1-Z2.W2 + :T Neplatný interval IP %s\nOèekáván X.Y.Z.W1-W2\nnebo X.Y.Z1.W1-Z2.W2 + !Q_DELPRIMARY + :E Confirm deletion of a domain + :T Potvrïte smazání domény + !Q_DELSECONDARY + :E Confirm deletion of a secondary spec + :T Potvrïte smazání sekundárního serveru + !M_EDITBYDOM + :E host information by domain + :T informace o poèítaèi podle domény + !T_SELHOST + :E Hosts to edit + :T Upravit poèítaèe + !T_EDITBYDOM + :E Edit hosts by domain + :T Upravit poèítaèe podle domény + !E_MUSTINSERT + :E Insert a name before\nthe domain name + :T Vlo¾te jméno pøed jméno domény + !I_ANEWHOST + :E Select [Add] tp add a new host/sub-domain + :T Pomocí [Pøidej] lze pøidat nový poèítaè/subdoménu + !E_NODOMAINDEF + :E No domain defined yet + :T Zatím nedefinovány ¾ádné domény + !T_MISSCACHE + :E Missing root file + :T Chybí soubor s koøenem systému + !E_MISSCACHE + :E Missing cache file %s\nThis DNS won't operate normally + :T Chybí cache soubor %s\nTato DNS nebude pracovat korektnì + !I_MISSCACHE + :E The file %s is not installed on your system\n + +This will prevent normal operation of your DNS\n + +I can install a copy of it for now.\n + +\n + +Get an up to date version at\n + +ftp://ftp.rs.internic.net/domain/named.root\n + +\n + +Do I install a copy of root.cache now ? + :T Soubor %s není na tomto poèítaèi nainstalován.\n + +To znemo¾ní èinnost DNS.\n + +Mù¾u nainstalovat kopii.\n + +\n + +Nejnovìj¹í verzi lze získat na\n + +ftp://ftp.rs.internic.net/domain/named.root\n + +\n + +Má se nainstalovat kopie souboru root.cache? + !E_CANTCOPY + :E Can't copy\n %s\n to\n %s\ncorrectly + :T Nelze korektnì zkopírovat\n %s\n do\n %s + !N_DNSCREATED + :E A basic DNS (caching DNS) has been created.\n + +You can add domain to it as needed. + :T Byla vytvoøena základní DNS (caching DNS) + !Q_RENAME + :E You are renaming the host or domain\n + + %s\n + +to\n + + %s\n + +\n + +Do you want to delete the informations\n + +associated with the original name ? + :T Pøejmenováváte poèítaè nebo doménu\n + + %s\n + +na\n + + %s\n + +\n + +Má se informace asociovaná s originálním\n + +jménem smazat? + !T_RENAME + :E Renaming + :T Pøejmenování + !F_HOST + :E host name + :T Jméno poèítaèe + !T_IPREVERSE + :E Host address + :T IP adresa + !I_IPREVERSE + :E You can enter multiple IP numbers\n + +for one host. These IP numbers will be used to lookup\n + +a host name from its IP number. Another DNS should\n + +contain the official definition of this host. + :T Lze zadat více IP adres pro jeden poèítaè.\n + +Tyto IP adresy budou pou¾ity pro vyhledání\n + +jména poèítaèe podle IP adresy. Jiná DNS by\n + +mìla obsahovat oficiální definici tohoto poèítaèe. + !E_NOMATCH + :E The IP numbers you have entered was not part\n + +of any reverse mapping pseudo-domain + :T Zadaná IP adresa není èástí ¾ádné pseudodomény\n + +pro reverzní mapování + !E_LEXDNS + :E Invalid character in name\n + +\t%s\n + +only digits, letter, - and . are allowed\n + +May also start with a * + :T Neplatný znak ve jménì\n + +\t%s\n + +povoleny jsou jen èíslice, písmena, - a . \n + +Jméno mù¾e také zaèínat * + !N_CONFIG + :E Config + :T Konfigurace + !E_NOIPWCNAME + :E No IP number allowed with a nickname + :T Pøi zadání pøezdívky nelze zadat IP adresu + !H_SECONDARIES + :E domain\tprimary\tother + :T doména\tprimární\tostatní + !H_DOMAIN + :E Domain\tRevision date\tRevision count + :T Doména\tDatum revize\tÈítaè revizí + !T_DEFAULTIP + :E Default IPs + :T Implicitní IP adresy + !T_IPCONFLICT + :E IP allocation conflict resolution + :T IP alokace je v konfliktu s pøevodem jména na IP + !I_IPCONFLICT + :E The IPs you have allocated are already\n + +in use in this DNS.\n + +You should pick either different IPs\n + + (linuxconf supply available ones)\n + +Or you must specify which IP will be the \"main\" IP\n + +and will receive the reverse mapping\n + :T Alokované IP adresy u¾ tato DNS pou¾ívá.\n + +Nutno vybrat jiné (Linuxconf nabídne volné)\n + +nebo je nutno uvést IP, která bude \"hlavní\" IP\n + +a bude pøijímat reverzní mapování\n + !I_DOREV + :E Do reverse mapping on this IP + :T Povolit reverzní mapování této IP + !F_ALLOCTO + :E Allocated to + :T Alokovaná pro + !H_HOST + :E Name\tValue + :T Jméno\tHodnota + !E_EXMISSING + :E Example domain %s does not exist + :T Ukázková doména %s neexistuje + !E_DOMEXIST + :E Domain already exist in this DNS + :T V této DNS doména u¾ existuje + !E_NORANGE + :E No range \"%s\" defined + :T Interval \"%s\" nedefinován + !E_NOIPAVAIL + :E No IP number available in the range \"%s\" + :T V intervalu \"%s\" nejsou IP adresy k dispozici + !E_IVLDOPT + :E Invalid option %s, file %s line %d + :T Neplatný pøepínaè %s, soubor %s øádek %d + !M_FEATURES + :E features + :T Mo¾nosti + !F_FORWARDONLY + :E Forward only + :T Jen pøedávat + !I_FORWARDONLY + :E Let the forwarders resolve + :T Pøevádìt jména na IP pøedáváním + !F_NORECURSE + :E No recursion + :T Zakázat rekurzi + !I_NORECURSE + :E + :T + !F_NOFETCHGLUE + :E No fetch glue + :T Nepou¾ívat fetch glue + !I_NOFETCHGLUE + :E + :T + !F_QUERYLOG + :E Log each query + :T Zaznamenávat ka¾dý dotaz + !T_DNSFEATURES + :E DNS features + :T Mo¾nosti DNS + !F_XFERNETS + :E Limit zone transfer to networks + :T Omezit transfer zón na sítì + !F_BOGUSNS + :E Don't use those servers + :T Nepou¾ívat tyto servery + !F_FAKEIQUERY + :E Fake iquery + :T Pøedstírat iquery + !N_NOFORWARDER + :E You have selected the option forward only\n + +but there are no forwarders defined.\n + +\n + +Input accepted anyway + :T Zvoleno jenom pøedávání, ale ¾ádné není\n + +definované.\n + +\n + +Dotazy budou stejnì akceptovány + !M_DNSSERVER + :E DNS server + :T DNS server + !E_ISASECOND + :E This DNS is already a secondary for this domain.\n + +It can't be both at the same time + :T Tato DNS je u¾ sekundární pro tuto doménu.\n + +Nelze být obojím najednou + !E_ISAPRIMARY + :E This DNS is already a primary for this domain.\n + +It can't be both at the same time + :T Tato DNS je u¾ primární pro tuto doménu.\n + +Nelze být obojím najednou + !M_dnsconf + :E Domain Name Server (DNS) + :T Domain Name Server (DNS) + !E_IVLDKEYW + :E Invalid keyword %s\nin file %s, line %d + :T Neplatné klíèové slovo %s\nv souboru %s, øádek %d + !N_DNSUPDATED + :E The DNS has been updated + :T DNS byla obnovena + !F_SEARCHLIST + :E Search list + :T Seznam pro vyhledávání + !T_FEATURES + :E Features + :T Mo¾nosti + !T_MVIRTUAL + :E Dns + :T DNS + !E_VHOSTEXIST + :E DNS domain %s\nis already configured + :T Doména %s u¾ je nakonfigurovaná + !T_BASEINFO + :E Basic + :T Základní + !E_BIND8LEX + :E %s\nfile %s line %d + :T %s\nsoubor %s øádek %d + !E_EXPECTARG1 + :E Expect argument followed by a semi-colon + :T Oèekáván argument následovaný støedníkem + !E_IVLDTOKEN + :E Invalid keyword %s + :T Neplatné klíèové slovo %s + !E_EXPECTTYPE + :E Expected either master, slave or hint + :T Oèekáván master, slave nebo hint + !E_IVLDIP + :E Expected valid IP number: %s + :T Oèekávána platná IP adresa: %s + !E_ZONETYPE + :E Missing zone type (master or slave) + :T Chybí typ zóny (master nebo slave) + !E_EXPECTED + :E Expected token %s + :T Oèekáván %s + !E_IVLDHOSTIP + :E Invalid host IP number: %s\n + :T Neplatná adresa IP: %s\n + !E_SETHOSTPART + :E Can't set host part for record type %d\n + :T Nelze nastavit poèítaè pro záznam typu %d\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/firewall.dic linuxconf-1.15/messages/cz/firewall.dic *** linuxconf-1.14r4/messages/cz/firewall.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/firewall.dic Fri Apr 9 13:01:21 1999 *************** *** 0 **** --- 1,222 ---- + @version 0 + !M_FIREWALLSYS + :E Firewalling rules + :T Pravidla pro firewall + !H_IPFWRULES + :E Enabled\tProto\tIface\tFrom\t<->\tIface\tTo + :T Povoleno\tProto\tRozhr\tZ\t<->\tRozhr\tDo + !I_NEWRULES + :E Select [Add] to define a new rule + :T Pomocí [Pøidej] lze definovat nové pravidlo + !T_EDITFIRE + :E Edit firewalling rules + :T Upravit pravidla pro firewall + !I_EDITFIRE + :E You are allowed to edit/add/delete rules + :T Zde lze upravit/pøidat/mazat pravidla + !ERR_BLOCKING + :E The kernel does not support\nIP_BLOCKING, reconfigure it + :T Kernel nepodporuje\nIP_BLOCKING, nutno rekonfigurovat + !ERR_FORWARDING + :E The kernel does not support\nfirewalling reconfigure it + :T Kernel nepodporuje\nfirewall, nutno rekonfigurovat + !ERR_OUTPUT + :E The kernel does not support\nIP_OUTPUTING, reconfigure it + :T Kernel nepodporuje\nIP_OUTPUTING, nutno rekonfigurovat + !ERR_ACCT + :E The kernel does not support\nIP_ACCOUNTING, reconfigure it + :T Kernel nepodporuje\nIP_ACCOUNTING, nutno rekonfigurovat + !E_IPFWDISABLE + :E Some error has occured, firewall not activated\n\n%s + :T Nastala chyba, firewall nebyl aktivován\n\n%s + !E_FWOLDKERN + :E Linuxconf was compiled on an old kernel and does not\n + +support firewalling properly. No rule will be activated. + :T Linuxconf byl zkompilovánse starým kernelem a nepodporuje\n + +firewall korektnì. Pravidla nebudou aktivována. + !F_BRULES + :E Inputing rules + :T Vstupní pravidla + !I_AREACTIVE + :E are active + :T jsou aktivní + !F_FRULES + :E forwarding rules + :T Pravidla pro pøedávání + !F_ORULES + :E outputing rules + :T Výstupní pravidla + !F_ARULES + :E accounting rules + :T Pravidla pro kontrolu paketù + !T_KERNMOD + :E Special kernel modules + :T Speciální moduly kernelu + !F_MOD_CUSEEME + :E CuSeeMe + :T CuSeeMe + !F_MOD_FTP + :E Ftp + :T FTP + !F_MOD_IRC + :E Irc + :T IRC + !F_MOD_RAUDIO + :E Real Audio + :T Real Audio + !F_MOD_QUAKE + :E Quake + :T Quake + !F_MOD_VDOLIVE + :E Vdolive + :T Vdolive + !F_REQUIRED + :E required + :T vy¾adován + !F_IRCPORTS + :E Irc ports(opt) + :T Porty pro IRC (nepov) + !T_GLOBALCTRL + :E Global control of the firewalling/accounting + :T Celkové ovládání firewallu/kontroly paketù + !I_GLOBALCTRL + :E You are allowed to disable/enable all rule sets\n + +without deleting them. Beware that activating\n + +an empty rule set is closing all doors!!! + :T Zde ze povolit/zakázat v¹echny skupiny pravidel\n + +bez jejich smazání. Uvìdomte si, ¾e povolení\n + +prázdné mno¾iny zakazuje v¹e!!! + !E_IVLDIRCPORTS + :E Invalid IRC ports syntax\n + +expecting port [ , port ...]\n + +where port is a number between 1024 and 65000 + :T Neplatná syntax pro IRC porty\n + +oèekáván port [ , port ...]\n + +kde port je èíslo mezi 1024 a 65000 + !E_IVLDIP + :E Invalid IP number or host name or interface: %s\n + :T Neplatná IP adresa, jméno poèítaèe nebo rozhraní: %s\n + !E_MISSINGHN + :E Missing host or network + :T Chybí poèítaè nebo sí» + !E_ALLOWPORTRANGE + :E Port range only allowed for TCP and UDP protocol + :T Rozsah portù povolen jen pro protokoly TCP a UDP + !E_IVLDPRANGE + :E Invalid port range\nExpecting xxxx:yyyy + :T Neplatný rozsah portù\nOèekáván xxxx:yyyy + !E_ALLOWPORTLIST + :E Ports list only allowed for TCP and UDP protocol + :T Seznam portù povolen jen pro protokoly TCP a UDP + !E_IVLDPORTS + :E Invalid ports list + :T Neplatný seznam portù + !F_PROTOCOL + :E Protocol + :T Protokol + !F_FROM + :E From + :T Odesílatel + !F_HOSTORNET + :E Host or Network + :T Poèítaè nebo sí» + !F_HNETMASK + :E Netmask + :T Sí»ová maska + !F_PORTRANGE + :E Port range + :T Rozsah portù + !F_OTHERPORTS + :E Other ports + :T Ostatní porty + !F_INTERFACE + :E Interface + :T Rozhraní + !F_PACKFROMANY + :E Packet come from anywhere + :T Paket odkudkoliv + !F_TO + :E To + :T Pøíjemce + !E_IVLDPROTO + :E Invalid protocol + :T Neplatný protocol + !F_FW_ACCEPT + :E Accept + :T Akceptovat + !F_FW_REJECT + :E Reject + :T Odmítnout + !F_FW_DENY + :E Deny + :T Zakázat + !F_RULEPOLICY + :E Rule's policy + :T Politika pro pravidla + !F_RULEACTIVE + :E This rule is active + :T Toto pravidlo je aktivní + !F_DOMASQUERADE + :E Do masquerading + :T Zapnout ma¹karádu + !T_FORWARDING + :E Firewall forwarding rule + :T Pravidlo pro pøedávání pøes firewall + !T_OUTPUT + :E Firewall Outputing rule + :T Pravidlo pro vystupní firewall + !F_DOREDIR + :E Redirect to local port + :T Pøesmìrovat na lokální port + !F_REDIRPORT + :E Redirection port + :T Pøèsmìrovat na port + !T_INPUTING + :E Firewall inputing rule + :T Pravidlo pro vstupní firewall + !T_ACCT + :E IP Accouting rule + :T Pravidlo pro kontrolu paketù IP + !E_IVLDINTER + :E Invalid interface %s for firewalling rule + :T Neplatné rozhraní %s pro pravidlo + !T_USAGE + :E module firewall\n\n No command line option\n + :T modul firewall\n\n ®ádné pøèepínaèe pøíkazové øádky\n + !E_IVLDMASK + :E Invalid netmask + :T Neplatná sí»ová maska + !M_FWDEF + :E Firewalling defaults (packet filtering) + :T Obecné nastavení + !M_BLOCK + :E Blocking firewalling + :T Blokovací firewall + !M_FORWARD + :E Forward firewalling + :T Pøedávácí firewall + !M_OUTPUT + :E Output firewalling + :T Výstupní firewall + !M_ACCT + :E Packet accounting + :T Kontrola paketù + !M_RSTFIREWALL + :E Turn off firewalling + :T Vypnout firewall + !N_FIREWALLRESET + :E The firewalling rules have been disabled\n + +They will be activated again anytime you let\n + +Linuxconf activate configuration changes. + :T Pravidla pro firewall byly vypnuty.\n + +Budou opìt aktivována, kdy¾ necháte\n + +pøí¹tì Linuxconf aktivovat zmìny.\n + !S_FIREWALL + :E Setting firewalling + :T Nastavuji firewall + !E_KERNEL2_2 + :E The Linuxconf firewall module is not compatible\n + +with kernel 2.1 and above.\n + +Sorry... + :T Modul firewall není kompatibilní s kernelem verze 2.1.X a vy¹¹í.\n + +Sorry... \ No newline at end of file diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/fstab.dic linuxconf-1.15/messages/cz/fstab.dic *** linuxconf-1.14r4/messages/cz/fstab.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/fstab.dic Fri Apr 9 13:11:35 1999 *************** *** 0 **** --- 1,542 ---- + @version 0 + !M_LOCALD + :E Access local drive + :T Lokální disk + !M_NFSVOL + :E Access nfs volume + :T Svazek NFS + !M_SAMBA + :E Access samba volume (WfWg) + :T Svazek SMB + !M_SWAP + :E Configure swap files and partitions + :T Nastavení odkládacích souborù a oddílù + !M_FIXPERM + :E Check some file permissions + :T Ovìøit práva u nìkterých souborù + !T_FSCONF + :E Filesystem configurator + :T Konfigurace souborového systému + !I_FSCONF + :E This package allows you to configure\n + +which partitions and network volumes your workstation\n + +can access + :T Tato obrazovka umo¾òuje konfigurovat\n + +které oddíly a sí»ové svazky budou pøístupné\n + +pro tento poèítaè + !N_NOSAMBA + :E Samba management not available\nat this time + :T Správa SMB svazkù není zatím\nk dispozici. + !P_FIXPERM + :E To fix file permission + :T Opravit práva souboru + !N_ALLISOK + :E All is ok + :T V¹e v poøádku + !E_FSTABARG + :E Invalid argument\n\nfsconf\nfsconf --check\n + :T Neplatný argument\n\nfsconf\nfsconf --check\n + !F_SERVER + :E Server + :T Server + !F_VOLUME + :E Volume + :T Svazek + !F_SHARE + :E Share + :T Sdílení + !F_PARTITION + :E Partition + :T Oddíl + !F_TYPE + :E Type + :T Typ + !F_EXT2 + :E Standard Linux + :T Standardní Linux + !F_MINIX + :E Sometime for floppy + :T N¹kdy pro diskety + !F_UMSDOS + :E Superset of msdos + :T Nadmno¾ina MS-DOS + !F_OS2 + :E OS/2 High Performance FS + :T OS/2 High Performance FS + !F_UNIXV + :E Unix system V old fs + :T Starý souborový systém pro Unix system V + !F_XIAFS + :E Old linux fs + :T Starý souborový systém pro Linux + !F_MPOINT + :E Mount point + :T Adresáø pro pøipojení + !T_GENOPTIONS + :E General options + :T Obecné mo¾nosti + !F_OPTIONS + :E Options + :T Mo¾nosti + !F_READONLY + :E Read only + :T Jen pro ètení + !F_USERMNT + :E User mountable + :T U¾ivatelé mohou pøipojit + !F_BOOTTIME + :E Not mount at boot time + :T Nepøipojovat pøi startu systému + !F_NOEXEC + :E No program allowed to execute + :T Zakázat spou¹tìní programù + !F_NOSPC + :E No special device file support + :T Bez podpory pro speciální soubory pro zaøízení + !F_NOSUID + :E No setuid programs allowed + :T Zakázat programy be¾ící jako root + !T_MSOPT + :E (U)MsDOS and HPFS options + :T Mo¾nosti pro (U)MsDOS a HPFS + !F_DEFUID + :E default user id + :T Implicitní u¾ivatelské ID + !F_DEFGID + :E default group id + :T Implicitní ID skupiny + !F_DEFPERM + :E default permission + :T Implicitní práva + !F_TRAMODE + :E translation mode + :T Mód pro konvertování + !F_NOTRA + :E No file translation + :T Bez konvertování + !F_EXTTRA + :E Translate based on extension + :T Konvertovat podle pøípony + !F_ALWTRANS + :E Always translate + :T Konvertovat v¾dy + !T_NFSOPT + :E NFS options + :T Mo¾nosti NFS + !F_SOFTMNT + :E Soft mount + :T Mìkké pøipojení + !F_BGMOUNT + :E Background mount + :T Pøipojení na pozadí + !F_READSIZE + :E read size + :T velikost bloku pro ètení + !F_OTHEROPT + :E Other options + :T Ostatní mo¾nosti + !F_COMMENT + :E Comment + :T Komentáø + !T_VOLSPEC + :E Volume specification + :T Specifikace svazku + !I_VOLSPEC + :E You must enter the specification of a volume\n + +or partition and the position (mount point)\n + +where you want to install this volume\n + +in the directory structure of this workstation\n + :T Nutno zadat specifikaci svazku nebo oddílu\n + +a adresáø, kam se má svazek pøipojit\n + +v adresáøové struktuøe tohoto poèítaèe.\n + !T_LOCALVOL + :E Local volume + :T Lokální svazek + !T_NFSVOL + :E NFS volume + :T Svazek NFS + !T_SMBVOL + :E SMB volume + :T Svazek SMB + !T_SWAPSPACE + :E Swap space + :T Odkládací prostor + !T_NOVELL + :E NOVELL volume + :T Svazek Novell + !I_MOUNTS + :E You can edit, add, or delete mounts + :T Zde lze upravovat, pøidávat a mazat pøipojení + !I_ADDDEF + :E Select [Add] to add a new definition + :T Pomocí [Pøidej] lze pøidat novou definici + !N_ROOTDEF + :E The root device has been changed to + :T Zaøízení obsahující koøenový adresáø bylo zmìnìno na + !E_CANTVLD + :E Can't validate the root entry\n + +of your /etc/fstab file for the following\n + +reason:\n + +\n + +%s: %s + :T Nelze ovìøit polo¾ku skoøenovým adresáøem\n + +v souboru /etc/fstab, proto¾e:\n + +\n + +%s: %s + !E_NOMNTPT + :E You must specify a mount point(directory)\nfor entry %s\n + :T Nutno uvést adresáø pro pøipojení\nv záznamu %s\n + !Q_EXISTMNT + :E Mount point %s\ndoes not exist.\nDo you want to create it ?\n + :T Adresáø pro pøipojení %s\nneexistuje.\nMá se vytvoøit?\n + !T_CANTMOUNT + :E Can't mount + :T Nelze pøipojit + !E_ISNOTDIR + :E %s is not a directory\nplease pick a different mount point\n + :T %s není adresáø.\nVyberte jinou cestu\n + !N_PROCADD + :E An entry for the /proc file system has been added\n + +The proc file system is needed for quite a few\n + +system utilities such as \"ps\"\n + +\n + :T Byl pøidán záznam pro souborový systém /proc.\n + +Tento je potøebný pro nìkteré programy, napø. \"ps\".\n + +\n + !T_NOSWAP + :E No swap !!! + :T Chybí odkládací prostor !!! + !Q_NOSWAP + :E Your linux system is lacking\n + +a swap file or swap partition\n + +\n + +This is a severe weakness\n + +Do you want to create a swap now ? + :T Tento systém neobsahuje odkládací soubor\n + +nebo oddíl.\n + +\n + +To je významé opomenutí.\n + +Má se odkládací místo vytvoøit? + !T_AREYOUSURE + :E Are you sure + :T Jste si jist + !Q_BUGYOU + :E I will bug you about your system\n + +lacking a swap every time I can\n + +\n + +Do you want me to shut off ? + :T Hlá¹ení o odkládacím prostoru\n + +se bude opakovat tak èasto, jak to jen\n + +bude mo¾né.\n + +\n + +Mám s tím pøestat? + !N_SOMEMODS + :E Some ajustements were made to the /etc/fstab\n\n%s + :T Soubor /etc/fstab byl upraven\n\n%s + !E_IVLDFDISK + :E Invalid output format for fdisk\n%s + :T Neplatný výstupní formát pro fdisk\n%s + !L_CREATING + :E Creating %s %s\n + :T Vytváøím %s %s\n + !E_CONFFILE + :E %s\n\nIn file %s, line %d\n + :T %s\n\nV souboru %s, øádek %d\n + !E_IVLDOPT + :E Invalid option %s + :T Neplatná mo¾nost %s + !E_IVLDDEV + :E Invalid device specification\nExpect b|c,major,minor, got %s\n + :T Neplatná specifikace zaøízení.\nOèekáván formát b|c,major,minor, ne %s\n + !E_IVLDTYPE + :E Invalid type field \"%s\" (b, c, d or f expected)\n + :T Neplatný typ \"%s\" (oèekáván b, c, d nebo f)\n + !E_NOUSER + :E No user \"%s\" defined on this system + :T U¾ivatel \"%s\" není definován + !E_NOGROUP + :E No group \"%s\" defined on this system + :T SKupina \"%s\" není definovaná. + !L_CHGOWN + :E Changing owner of file %s to %s.%s\n + :T Zmìna vlastníka souboru %s na %s.%s\n + !E_CANTCHG + :E **** Can't change the type of file %s\n manual action required!\n + :T **** Nelze zmìnit typ souboru %s\n Nutný ruèný zásah!\n + !L_CHGPERM + :E Changing permissions of file %s from %o to %o\n + :T Zmìna práv k souboru %s z %o na %o\n + !E_IVLDLINE + :E Invalid line: %s + :T Neplatný øádek: %s + !L_DIRECTORY + :E directory + :T adresáø + !L_FILE + :E file + :T soubor + !I_FIXMOUNT + :E The directory %s was originally mounted\n + +on %s. It should now be mounted\n + +on %s.\n + +\n + +Should I unmount/mount to fix it ? + :T Adresáø %s byl pùvodnì pøipojen k %s\n + +Nyní by mìl být pøipojen k %s.\n + +\n + +Má se odpojit/pøipojit? + !Q_FIXMOUNT + :E Fix target of a mount + :T Opravit cíl pøipojení + !I_REMOUNT + :E The directory %s was originally mounted\n + +with option %s.\n + +It should now be mounted\n + +with options %s.\n + +\n + +Should I remount to fix it ? + :T Adresáø %s byl pùvodnì pøipojen s %s\n + +Nyní by mìl být pøipojen s %s.\n + +\n + +Má se znovupøipojit? + !Q_REMOUNT + :E activate new mount options + :T aktivovat nové nastavení pøipojení + !F_DUMPFREQ + :E Dump frequency + :T Frekvence pro dump + !F_CHKPRI + :E Fsck priority + :T Priorita FSCK + !E_WRONGDEV + :E Device file %s wrongly created\n + +\tExpected major %d, minor %d\n + +\tFound major %d, minor %d\n + +\tManual action required\n + :T Soubor zaøízení %s byl nesprávnì vytvoøen.\n + +\tOèekáváno major %d, minor %d\n + +\tMomentálnì major %d, minor %d\n + +\tNutný ruèný zásah\n + !Q_DELENTRY + :E Confirm deletion of /etc/fstab entry + :T Potvøïte smazání záznamu v /etc/fstab + !F_ISOFS + :E Cdrom file system + :T Souborový systém CDROM + !H_FSTAB + :E Source\tMount point\tFsType\t Size\tPartition type\tStatus + :T Zaøízení\tAdresáø\tTyp\t Velikost\tTyp oddílu\tStav + !F_PATH + :E Path + :T Cesta + !F_OWNER + :E Owner + :T Vlastník + !F_GROUP + :E Group + :T Skupina + !T_ONESPEC + :E One file permission setting + :T Nastavení práv jednoho souboru + !H_PERMS + :E Path\tType\tOwner\tPermissions\tMod + :T Cesta\tTyp\tVlastník\tPráva\tMod + !T_FILE + :E File + :T Soubor + !T_DIR + :E Dir + :T Adresáø + !T_PERMS + :E Permissions of all config files + :T Práva pro v¹echny konfiguraèní soubory + !I_PERMS + :E You can see and change the permission\n + +settings of all configuration files and directories\n + +managed by linuxconf. + :T Zde lze zmìnit práva ke v¹em konfiguraèním\n + +souborùm a adresáøùm, které spravuje Linuxconf. + !T_CHR + :E Chrdev + :T Znak + !T_BLK + :E Blkdev + :T Blok + !F_MAYEXEC + :E May execute + :T Mù¾e spou¹tìt + !F_MAYWRITE + :E May write + :T Mù¾e zapisovat + !F_MAYREAD + :E May read + :T Mù¾e èíst + !T_USER + :E User + :T Vlastník + !T_GROUP + :E Group + :T Skupina + !T_OTHER + :E Others + :T Ostatní + !F_USRQUOTA + :E User quota enabled + :T Povolení omezení pro u¾ivatele + !F_GRPQUOTA + :E Group quota enabled + :T Povolit omezení pro skupiny + !T_QUOTADEF + :E Default quota for users and groups + :T Implicitní omezení pro u¾ivatele a skupiny + !I_QUOTADEF + :E + :T + !M_QUOTA + :E Set quota defaults + :T Nastavit implicitní omezení + !F_SOFTK + :E Disk space soft limit + :T Krátkodobé omezení místa na disku + !F_HARDK + :E Disk space hard limit + :T Dlouhodobé omezení místa na disku + !F_GRACEK + :E Disk space grace period + :T Doba pro krátkodobé omezení místa na disku + !F_SOFTF + :E Files soft limit + :T Doèasné omezení poètu souborù + !F_HARDF + :E Files hard limit + :T Dlouhodobé omezení poètu souborù + !F_GRACEF + :E Files grace period + :T Doba pro krátkodobé omezení poètu souborù + !T_USERDEF + :E User default + :T Implicitní pro u¾ivatele + !T_GROUPDEF + :E Group default + :T Implicitní pro skupinu + !I_QUOTACHECK + :E You have enable disk quota management on\n + +the file-system %s.\n + +To make this effective, we must run the quotacheck utility.\n + +It will browse through the directories and update the current\n + +disk usage for each users and groups. This will take a while\n + +\n + +Should we do this now ? + :T Ma soouborovém systému %s bylo povoleno omezení místa.\n + +Aby bylo mo¾no uvést systém do pou¾ívaní, je nutné\n + +spustit quotacheck pro spoèítání vyu¾ití jednotlivými u¾ivateli.\n + +Mù¾e to chvíli trvat.\n + +\n + +Má se spustit checkquota hned? + !T_QUOTACHECK + :E Installing quota on a file-system + :T Instaluji omezení velikosti na souborový systém + !F_VFAT + :E DOS with long file name + :T DOS s dlouhými názvy + !P_BASE + :E Base + :T Základní + !P_OPTIONS + :E Options + :T Mo¾nosti + !P_MSDOS + :E Dos options + :T Mo¾nosti pro DOS + !P_MISC + :E Misc. + :T Rùzné + !T_SPCBITS + :E Special flags + :T Speciální pøíznaky + !F_SETUID + :E Setuid flag + :T Pøíznak setuid + !F_SETGID + :E Setgid flag + :T Pøiznak setgid + !F_ONLYOWNER + :E Restriction on directory + :T Omezení adresáøù + !F_WRITESIZE + :E write size + :T velikost pro zápis + !E_NODEVQUOTA + :E There is currently no partition with disk quota enabled.\n + +Visit the \"Access local drive\" menu and enable\n + +disk quota on selected volumes. + :T Momentálnì ¾ádný oddíl namá zapnuté omezení velikosti.\n + +Pomocí \"Lokální disk\" zapnìte omezení pro pøíslu¹né svazky + !H_FSTABNET + :E Source\tMount point\tFsType\tStatus + :T Zaøízení\tAdresáø\tTyp\tStav + !B_MOUNT + :E Mount + :T Pøipojit + !B_UMOUNT + :E Unmount + :T Odpojit + !E_ISMOUNTED + :E This file system is already mounted + :T Tento souborový systém u¾ je pøipojený + !E_ISNOTMOUNTED + :E This file system is not mounted + :T Tento souborový systém není pøipojený + !I_MOUNTED + :E Mounted + :T Pøipojen + !I_CTRLMOUNTS + :E You can mount or unmount file systems + :T Zde lze pøipojit nebo odpojit souborové systémy + !Q_UMOUNT + :E Unmount file system + :T Odpojení souborového systému + !I_UMOUNT + :E Do you want to unmount this file system + :T Chcete odpojit tento souborový systém + !Q_MOUNT + :E Mount file system + :T Pøipojení souborového systému + !I_MOUNT + :E Do you want to mount this file system + :T Chcete pøipojit tento souborový systém + !M_MANUAL + :E Mount other NFS file systems + :T Pøipojit ostatní souborové systémy NFS + !T_FSCONTROL + :E Control file systems + :T Ovládání souborových systémù + !I_FSCONTROL + :E You can mount/unmount file systems from here + :T Zde lze pøipojit/odpojit souborový systém + !M_CTRLLOCAL + :E Control configured local drives + :T Ovládání nastavených lokálních svazkù + !M_CTRLNFS + :E Control configured nfs volumes + :T Ovládání nastavených svazkù NFS + !T_MANUALNFS + :E Mounting manually + :T Ruèní pøipojení + !I_MANUALNFS + :E You can extend the current file system tree\n + +by appending one NFS volume anywhere + :T Zde lze roz¹íøit aktuální adresáøový strom\n + +pøipojením NFS svazku + !E_NOMPT + :E Mount point directory does not exist + :T Adresáø pro pøipojení neexistuje + !N_UMOUNTOK + :E Umount successful + :T Odpojení úspì¹né + !N_MOUNTOK + :E Mount successful + :T Pøipojení úspì¹né + !F_NOLOCKMNT + :E Nolock mount + :T Pøipojení bez zamykání diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/lang.title linuxconf-1.15/messages/cz/lang.title *** linuxconf-1.14r4/messages/cz/lang.title Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/lang.title Wed Mar 24 13:06:01 1999 *************** *** 0 **** --- 1 ---- + Czech diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/mailconf.dic linuxconf-1.15/messages/cz/mailconf.dic *** linuxconf-1.14r4/messages/cz/mailconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/mailconf.dic Fri Apr 9 12:36:07 1999 *************** *** 0 **** --- 1,830 ---- + @version 0 + !I_USAGE + :E Module mailconf\n + +\n + + --help\n + + --addvdom domain [--startuid uid ] [--daliases domain_alias ]\n + + [--faliase email_aliase_file] [ --quota max_inbox_k] \n + + --delvdom domain\n + :T Modul mailconf\n + +\n + + --help\n + + --addvdom doména [--startuid uid ] [--daliases aliasy_domény ]\n + + [--faliase soubor_email_aliasy] [ --quota max_inbox_k] \n + + --delvdom doména\n + !F_QUOTA + :E Limit user inbox to (k) + :T Omezení velikost u¾ivatelské schránky (k) + !N_MISSING + :E %s does not exist + :T %s neexistuje + !N_NOEXEC + :E %s is not executable + :T %s není spustitelný + !F_ALIASNAME + :E alias name + :T alias + !F_FILTER + :E Filter program + :T Filtrovací program + !F_LISTFILE + :E List file + :T Soubor se seznamem + !T_ONEALIAS + :E One alias definition + :T Definice jednoho aliasu + !I_ONEALIAS + :E Use the button ADD to get more space\nin case you are defining a mailing list\n + :T Pomocí [Pøidej] lze získat místo pro dal¹í\nmailing list\n + !P_EDITALIAS + :E edit an alias + :T Úprava aliasu + !E_NONAME + :E You must provide a name + :T Nutno zadat jméno + !E_ALLEMPTY + :E All values are empty + :T V¹echny polo¾ky jsou prázdné + !E_DUPALIAS + :E Duplicate alias, rejected + :T Duplikace aliasu, odmítnuto + !T_EDITALIASES + :E Edit global mail aliases + :T Úprava globálních aliasù pro e-mail + !IEDITALIASES + :E You are allowed to edit/add/deleted\nsystem wide aliases for electronic mail + :T Zde lze upravovat/pøidávat/mazat\naliasy pro e-mail, které paltí pro celý systém + !I_NEWALIAS + :E Select [Add] to add a new aliase + :T Pomocí [Add] lze pøidato nový alias + !P_WRITE + :E write %s + :T Zápis %s + !T_WHENREC + :E Domain aliases + :T Aliasy pro domény + !F_YOURSYS + :E Aliases for your system + :T Aliasy pro tento poèítaè + !F_PRESENT + :E Present your system as + :T Prezentovat tento poèítaè jako + !F_MAILHOST + :E Mail server + :T E-mail server + !F_SMARTHOST + :E Mail gateway + :T E-mailová brána + !F_SMARTMAIL + :E Mail gateway protocol + :T Protokol pro e-mailovou bránu + !F_ESMTP + :E Enhanced smtp + :T Vylep¹ené SMTP (ESMTP) + !F_SMTP + :E Normal smtp + :T Standardní SMTP + !F_MODERNUUCP + :E Recommended modern UUCP + :T Doporu¹ené moderní UUCP + !F_OLDUUCP + :E Old uucp + :T Staré UUCP + !T_FEATURES + :E Features + :T Vlastnosti + !F_NOBATCH + :E no batching for uucp mail + :T UUCP mail nespracovávát v dávkách + !F_MAXSIZE + :E Messages size limit + :T Omezení velikosti zprávy + !F_DELIVER + :E Deliver locally to users + :T Doruèovat lokálnì pro u¾ivatele + !F_NOMASQ + :E No masquerade from users + :T Nepou¾ívat ma¹karádu pro u¾ivatele + !F_SPECIAL + :E Special routing database format + :T Formát databáze pro speciální smìrování + !T_DNSFEATURES + :E DNS features + :T Vlastnosti DNS + !F_WAITDNS + :E wait for DNS + :T Èekat na DNS + !F_NODNS + :E don't use DNS + :T Nepou¾ívat DNS + !F_LIMITDNS + :E Limit DNS for those domains + :T Omezit DNS len na domény + !T_BASIC + :E Basic Sendmail configuration + :T Základní nastavení sendmailu + !P_CONFMAIL + :E configure sendmail + :T Nastavit sendmail + !N_HASGEN + :E %s has been regenerated! + :T %s byl pøegenerován! + !M_BASIC + :E basic information + :T Základní informace + !M_SPECIAL + :E special (domain) routing + :T Speciální smìrování (pro domény) + !M_COMPLEX + :E complex (user) routing + :T Komplexní smìrování (pro u¾ivatele) + !M_ALIASES + :E user aliases + :T U¾ivatelské aliasy + !M_TESTS + :E test cases + :T Testovací pøípady + !M_CONFIG + :E Configure + :T Konfigurovat + !M_SETTING + :E Setting + :T Nastavit + !T_SENDMAIL + :E Sendmail configurator + :T Konfigurátor pro sendmail + !I_SENDMAIL + :E This package allows you to configure\nSendmail, the mail delivery system\n + :T Tato obrazovka umo¾òuje konfigurovat\nSendmail, program pro pøenos elektronické po¹ty\n + !F_DEST + :E Destination + :T Cíl + !F_FORWARD + :E Forwader + :T Pøesmìrování + !F_MANAGE + :E Manage sub-domain identically + :T Spravovat subdomény stejnì + !F_MAILER + :E Mailer + :T Program pro posílání + !T_SPECIAL + :E Special routing + :T Speciální smìrování + !I_SPECIAL + :E Enter a destination (host) and the\n + +forwarder (another host) used to reach it\n + +and the mailer (transport) needed + :T Vlo¾te cílový poèítaè, poèítaè\n + +pøes který se má po¹ta pøesmìrovat\n + +a program, který zajistí pøenos (mailer) + !E_EMPTYF + :E All field must be filled + :T Nutno vyplnit v¹echny polo¾ky + !T_SPECIALS + :E Special routings + :T Seeciální smìrování + !I_SPECIALS + :E You are allowed to edit/add/remove routings\n + :T Zde lze upravovat/pøidávat/mazat smìrování\n + !I_ADDONE + :E Select [Add] to add one routing spec + :T Pomocí [Pøidej] lze pøidat specifikaci jednoho smìrování + !F_FROM + :E from + :T Odesílatel + !F_TO + :E to + :T Adresát + !F_NEWFROM + :E new from + :T Nový odesílatel + !F_NEWTO + :E rewriten to + :T Pøepsáno na + !F_ROUTER + :E Forward to server(opt) + :T Pøesmìrovat na server (nepov) + !F_DELCPLX + :E Select [Del] to delete this record + :T Pomocí [Sma¾] lze smazat tento záznam + !T_NEWCOMPLEXROUTE + :E New complex route + :T Nové komplexní smìrování + !T_COMPLEXROUTE + :E complex routing for %s + :T Komplexní smìrování pro %s + !I_COMPLEXROUTE + :E You are allowed to intercept email going to a user\n + +and redirect this to a new mail server,\n + +using a different protocol.\n + +In the process, you can rewrite the TO field\n + +and even the from field\n + :T Zde lze nastavit zachytávání e-mailù\n + +a jejich pøesmìrování na jiný e-mailový server,\n + +pøípadnì za pou¾ití jiného protokolu.\n + +Je mo¾né pøepisovat adresu adresáta,\n + +pøípadnì i odesílatele\n + !T_ADDCPLX + :E Select [Add] to add a complex routing rule + :T Pomocí [Pøidej] lze pøidat pravidlo pro komplexní smìrování + !T_COMPLEXROUTES + :E Complex routings + :T Komplexní smìrování + !I_COMPLEXROUTES + :E You can setup multiple complex routing for email\n + +The key is the destination, including the user name\n + :T Zde lze nastavit rùzná komplexní smìrování e-mailù\n + +Klíèem je cílová adresa, vèetnì u¾ivatelského jména\n + !M_GENERATE + :E Generate + :T Generovat + !Q_GENSENDMAIL + :E Generating %s + :T Generování %s + !I_GENSENDMAIL + :E You have modified sendmail's configuration.\n + +A new %s must be generated.\n + +Do you want to do it now + :T Zmìnilo se nastavení sendmailu.\n + +Musí být vygenerován nový soubor %s.\n + +Má se tak stát okam¾itì? + !F_CPLXACTIVE + :E This rule is active + :T Toto pravidlo je aktivní + !F_COMMENT + :E Comment + :T Komentáø + !F_LOCALMAILER + :E Local delivery agent + :T Agent pro lokální doruèení + !F_NOEMPTY + :E Field \"%s\" can't be empty\n + :T Polo¾ka \"%s\" nesmí být prázdná\n + !F_IVLDTO + :E Field \"%s\" is invalid or incomplete\n Was expecting user@domain format\n + :T Polo¾ka \"%s\" je neplatná nebo neúplná\nByt oèekáván formát u¾ivatel@doména\n + !F_USEMTABLE + :E special routing database + :T Databáze pro speciální smìrování + !I_USEMTABLE + :E Enabled + :T Povoleno + !I_ADDEMPTY + :E Select [Add] to add an empty alias line + :T Pomocí [Pøidej] lze pøidat prázdný øádek pro alias + !E_MTABLEON + :E The /etc/sendmail.cf will be generated without\n + +special (domain) routing enabled. This system\n + +has already some special routing definition(s)\n + +and this sendmail.cf won't make use of them.\n + +Enable \"special routing database\" in the\n + +\"basic information\" dialog to fix this\n + +and regenerate the sendmail.cf. + :T Soubor /etc/sendmail.cf bude vygenerován bez\n + +podpory pro speciální (doménové) smìrování.\n + +Systém sice obsahuje nìkolik definic pro speciální\n + +smìrování, ale tento konfiguraèní soubor je nebude vyu¾ívat.\n + +Povolením \"databáze pro speciální smìrování\"\n + +v \"základní informace\" lze sjednat nápravu\n + +a poté znovu vygenerovat sendmail.cf. + !M_VIRTDOM + :E virtual email domain + :T Virtuální e-mailová doména + !F_VDOMAIN + :E Virtual domain (fqdn) + :T Virtuální doména (fqdn) + !F_ALIASFILE + :E Alternate Aliases files(opt) + :T Soubory s aliasy (nepov) + !T_ONEVDOMAIN + :E One vdomain definition + :T Definice jedné virtuální domény + !I_ONEVDOMAIN + :E Select [Add] to add one virtual domain + :T Pomocí [Pøidej] lze pøidat novou virruální doménu + !T_VDOMAINS + :E Virtual email domains + :T Virtuální e-mailové domény + !E_VDOMEXIST + :E This virtual domain is already defined + :T Tato virtuální doména u¾ je definovaná + !I_DEFVDOMAIN + :E + :T + !I_VDOMAINS + :E You can define new virtual email domain\n + +virtual email hosting is a new concept.\n + +It is not required for most mail server configuration.\n + :T Zde lze definovat novou virtuální doménu pro e-mail.\n + +Tento nový koncept není pro vìt¹inu konfigurací potøeba.\n + !E_NOVDOM + :E No virtual email domain defined + :T Nejsou definované ¾ádné virtuální domény pro e-mail + !T_PICKVDOM + :E Pick the domain + :T Vyberte doménu + !T_VIRTDOMPRIV + :E Virtual email domains + :T Virtuální e-mailové domény + !T_DALIAS + :E Aliases for this domain + :T Aliasy pro tuto doménu + !M_VALIASES + :E virtual domain user aliases + :T Aliasy pro u¾ivatele ve virtuální doménì + !T_SELALIAS + :E Alias files for domain %s + :T Soubory s aliasy pro doménu %s + !I_SELALIAS + :E This virtual email domain has several alias file\npick the one to edit + :T Tato virtuální doména má nìkolik souborù s aliasy.\nVyberte jednu pro úpravu + !F_MAINSERV + :E Accept email for %s + :T Akceptovat e-mail pro %s + !E_NODOMAIN + :E Can't compute the domain name of this server\n + +It won't accept email correctly.\n + +Please enter a fully qualified domain name in the\n + +\"Basic host information\" screen. + :T Nelze vytvoøit doménové jméno pro tento server.\n + +Proto server nebude akceptovat e-mail správnì.\n + +Prosim, vlo¾te úplnoé doménové jméno v nastavení\n + +\"Základní informace o poèítaèi\". + !F_FALLBACK + :E Fallback destination (opt) + :T V pøípadì nedoruèitelnosti poslat na + !F_MASQACTIVE + :E This rule is active + :T Toto pravidlo je aktivní + !T_NEWMASQ + :E New masquerading rule + :T Nové pravidlo pro ma¹karádu + !T_MASQ + :E Masquerading rule for %s + :T Pravidlo pro ma¹karádu %s + !I_MASQUERADING + :E You are allowed to intercept email originating from a\n + +domain or a user of a domain and transform it so it now\n + +originate from another domain or another user of another domain\n + :T Zde lze definovat pravidla, pomocí kterých se zpráva z dané\n + +domény nebo od daného u¾ivatele transformuje tak, ¾e pochází\n + +z jiné domény nebo od jiného u¾ivatele. + !T_ADDMASQ + :E Select [Add] to define a new masquerading rule + :T Pomocí [Pøidej] lze definovat nové pravidlo pro ma¹karádu + !T_MASQRULES + :E Masquerading rules + :T Pravidla pro ma¹karádu + !I_MASQRULES + :E You can setup multiple masquerading rules.\n + +The key is the origin of the message, including the user name\n + :T Lze nastavit více pravidel pro ma¹karádu.\n + +Klíèem je adresa pùvodu, vèetnì u¾ivatelského jména\n + !M_MASQ + :E masquerading rules + :T Pravidla pro ma¹karádu + !E_AMBIGIOUS + :E Ambigious redirection.\n + +You must specify a user account in the \"rewriten to\"\n + +field.\n + :T Neurèité pøesmìrování.\n + +Nutno uvést u¾ivatelský ùèet v polo¾ce \"pøepsat na\"\n + !O_PROBED + :E Let linuxconf probe + :T Linuxconf odhadne + !E_NOSUCHVDOM + :E Virtual domain %s does not exist + :T Virtuální doména %s neexistuje + !T_VDOMLISTS + :E List of virtual email domains on this server + :T Seznam virtuální domén pro e-mail na tomto serveru + !T_VDOMAIN + :E Virtual email domain + :T Virtuální doména pro e-mail + !T_CHGVPASS + :E Change your password + :T Zmìna va¹eho hesla + !F_STARTUID + :E Allocate UID from + :T Pou¾ít UID vìt¹í ne¾ + !P_MANAGEDOM + :E manage a virtual domain + :T Správa virtuální domény + !M_FAX + :E mail to fax gateway + :T Brána pro faxování pøes e-mail + !F_FAXGTW + :E Mail to Fax gateway + :T Brána pro faxování pøes e-mail + !F_ENABLE + :E is active + :T je aktivní + !F_FAXSPOOL + :E Spool command + :T Pøíkaz pro zaøazení do fronty + !T_MAILFAX + :E Mail to Fax gateway configuration + :T Konfigurace brány pro faxování pøes e-mail + !I_MAILFAX + :E You can control the operation of the mail to fax\ngateway + :T Zde lze ovládat èinnost brány pro faxování pøes e-mail + !H_ZONES + :E Zone ID\tZone prefix\tLen\tRule + :T Jméno zóny\tPøedpona zóny\tDélka\tPravidlo + !M_ADDZONE + :E Select [Add] to define a new fax zone + :T Pomocí [Pøidej] se definuje nová faxová zóna + !T_ZONES + :E Fax zones + :T Faxové zóny + !I_ZONES + :E You can specify which telephone zones are\navailable for faxing. + :T Zde lze specifikovat telefonní zóny, které\njsou k dispozici pro faxování. + !F_FAXLOG + :E Log file + :T Loggovací soubor + !M_FAXUSERS + :E Fax users + :T U¾ivatelé faxu + !M_FAXZONES + :E Fax zones + :T Faxové zóny + !M_FAXALIASES + :E Fax aliases + :T Aliasy pro fax + !I_MAINMAILFAX + :E This menu let you configure how the gateway operates\n + +This controls who can fax, how and where + :T Tato obrazovka umo¾òuje konfigurovat èinnost brány,\n + +tedy lze definovat, kdo, kde a jak mù¾e faxovat. + !F_LEN + :E phone number length + :T Délka telefonního èísla + !T_USERS + :E users allowed to fax + :T U¾ivatelé, kteøí mohou faxovat + !T_ZONE + :E One fax zone + :T Jedna faxová zóna + !I_ZONE + :E You can define the specification of one fax zone + :T Zde lze specifikovat jednu faxovou zónu + !F_ZONE + :E Phone zone prefix + :T Pøedpona telefonní zóny + !Q_DELRECORD + :E Delete this record + :T Smazat tento záznam + !F_MANAGEFAX + :E Mail to Fax manager + :T Správce slu¾by Mail to Fax + !P_MAILFAX + :E manage the mail to fax gateway + :T Spravovat bránu pro faxování pøes e-mail + !F_FAXLOGC + :E Log command + :T Pøíkaz pro záznam do logu + !F_DEFERDELIV + :E Don't try to deliver immediatly + :T Nedoruèovat okam¾itì + !F_BOGUSHELO + :E Support bogus mail clients(HELO) + :T Podpora pro falo¹né e-mailové klienty (HELO) + !F_QUEUEDELAY + :E Process queue every (minutes) + :T Zpracovat frontu ka¾dých (minut) + !T_FAXUSERS + :E List of fax users + :T Seznam u¾ivatelù faxu + !I_FAXUSERS + :E You can enter here the list of privileged\n + +users. They may fax from remote locate to some\n + +phone zone. + :T Zde lze zadat seznam priviligovaných ù¾ivatelù, kteøí\n + +mohou faxovat vzdálenì do nìkterých telefonních zón. + !F_FAXALIASE + :E Alias + :T Alias + !F_FAXALIASENAME + :E Full name + :T Plné jméno + !F_FAXPHONE + :E Phone number + :T Telefonní èíslo + !T_FAXALIAS + :E Fax alias + :T Alias pro fax + !I_FAXALIAS + :E You define an email alias + :T Zde se definuje e-mailový alias + !H_ALIASES + :E Alias\tName\tPhone\tRule + :T Alias\nJméno\nTelefon\nPravidlo + !T_FAXALIASES + :E List of fax aliases + :T Seznam faxových aliasù + !F_FAXUSERID + :E User email address + :T E-mailová adresa u¾ivatele + !F_FAXUSERNAME + :E User name + :T U¾ivatelské jméno + !F_FAXUSERPGP + :E PGP public key (opt) + :T Veøejný klíè PGP (nepov) + !T_FAXUSER + :E Fax user + :T U¾ivatel faxu + !I_FAXUSER + :E You define the minimal information to\nsetup a fax account for privilege user\n + :T Zde se definuje jste minimální nastavení pro\nfaxovací konto pro privilegovaného u¾ivatele\n + !I_PRIVUSER + :E PGP optionnal + :T PGP nepovinné + !F_ACCESSLOCAL + :E Local email only + :T Jedinì lokální e-mail + !F_ACCESSANY + :E email from anywhere + :T E-mail odkudkoliv + !I_PRIVPGPUSER + :E required PGP signature + :T Po¾adovat signaturu PGP + !F_ACCESSZONEUSERS + :E Only rule's users accepted + :T Akceptovat jedinì u¾ivatele definované pravidlem + !F_ACCESSUSERS + :E All fax users accepted + :T Akceptovat ka¾dého u¾ivatele faxu + !H_FAXUSERS + :E Email\tName + :T E-mail\tJméno + !F_RULE + :E Access rule + :T Pøístupové pravidlo + !T_RULE + :E One access rule + :T Jedno pøístupové pravidlo + !T_RULES + :E Fax rules + :T Pravidla pro faxování + !I_RULES + :E You can specify access rules needed to setup\nvarious fax zones and fax aliases + :T Zde lze specifikovat pøístupová pravidla pro rùzné\nfaxové zóny a aliasy + !M_FAXRULES + :E Fax access rules + :T Pøístupová pravidla pro faxování + !F_RULEID + :E Rule id + :T Jméno pravidla + !I_RULE + :E You can define one access rule which will be\n + +used to limit access to zone and fax aliases + :T Zde lze definovat jedno pøístupové pravidlo, které bude\n + +pou¾ito pro omezení pøístupu do zóny a k aliasu + !F_ZONEID + :E Zone id + :T Jméno zóny + !H_RULES + :E Rule ID\tAccess\tUser list + :T Jméno pravidla\tPøístup\tSeznam u¾ivatelù + !M_ADDRULE + :E Select [Add] to define a new fax rule + :T Pomocí [Pøidej] lze definovat nové pravidlo + !F_ACCESSCTL + :E Access control + :T Ovládání pøístupu + !F_USERAUTH + :E User authentification + :T Ovìøení u¾ivatele + !T_SERVICES + :E 1-Services + :T 1-Slu¾by + !M_MAILSYS + :E Mail system + :T Po¹tovní systém + !M_FAXSUBSYS + :E Mail to fax gateway + :T Brána pro faxování pøes e-mail + !M_VDOMAINSUB + :E Virtual email domains + :T Virtuální e-mailové domény + !F_TRUST + :E Trusted users + :T Dùveryhodní u¾ivatelé + !F_USEGECOS + :E match full user name + :T Porovnávat úplná u¾ivatelská jména + !M_SENDMAILSPEC + :E Sendmail specific files + :T Soubory specifické rpo Sendmail + !I_UPDSENDMAILCF + :E Generating %s\n + :T Generuji %s\n + !Q_NOTBYME + :E The file %s was not generated by Linuxconf.\n + +It was either never generated by Linuxconf\n + +or has been modified manually later.\n + +\n + +Linuxconf will overwrite it and produce a backup file\n + +named %s.\n + +\n + +\tOk ? + :T Soubor %s nebyl vygenerován Linuxconfem.\n + +Buï ho Linuxconf nikdy negeneroval, nebo byl\n + +ruènì zmìnen.\n + +\n + +Linuxconf jej zazálohuje jako %s a pøepí¹e.\n + +\n + +\tV poøádku? + !T_NOTBYME + :E Attention + :T Pozor + !I_USERSAYNO + :E Not done as confirmed by the admin\n + :T Nepovedlo se tak, jak øekl administrátor\n + !M_SPAMDENY + :E Rejected senders + :T Odmítat odesílatele + !M_SPAMIPALLOW + :E 'Relay for' by IP + :T Pøedávání podle IP + !M_SPAMNAMEALLOW + :E 'Relay for' by name + :T Pøedávání podle jména + !M_RELAYALLOW + :E Relay to hosts + :T Pøedávat poèítaèùm + !T_SPAMRULES + :E Anti-spam filters + :T Filtry proti spamu + !I_ADDENTRY + :E Select [Add] to add a new entry + :T Pomocí [Pøidej] lze pøidat nový záznam + !F_EMAILORIGIN + :E Email origin + :T Odesílatel zprávy + !F_ERRMSG + :E Error message + :T Chybová zpráva + !T_DENYSPAM + :E Rejected message + :T Odmítnutá zpráva + !I_DENYSPAM + :E You enter the sender address you want\n + +to filter out.\n + +You may enter a complete email address,\n + +a domain, a host name or a network address + :T Zde se zadáva adresa odesílatele, který\n + +se má odfiltrovat.\n + +Lze zadat úplnou e-mailovou adresu, doménu,\n + +jméno poèítaèe nebo IP adresu. + !T_RELAY + :E May relay mail to + :T Lze pøedáváat e-mail do + !I_RELAY + :E Enter the list of host or network\nto which you intend to relay mail + :T Vlo¾te seznam poèítaèù nebo sítí,\ndo kterých se má po¹ta pøedávat + !H_NAMEORNET + :E Name or network address + :T Jméno nebo IP adresa + !T_REJECTFROM + :E Mail rejected from + :T Odmítat e-mail z + !I_REJECTFROM + :E Any mail received from one of the following persons\n + +or domains will be dropped\n + :T Ka¾dá zpráva od následujících osob nebo domén nebude\n + +doruèena.\n + !H_REJECTFROM + :E Sender\tMessage + :T Odesílatel\nZpráva + !T_ALLOW + :E May relay mail for + :T Lze pøedávat e-mail pro + !I_IPALLOW + :E This is the list of hosts or networks which\n + +are allowed to use your server as a mail relay\n + +You must enter either complete IP numbers\n + +for host, or partial IP for networks + :T Toto je seznam poèítaèù a sítí, které\n + +mohou pou¾ívat tento poèítaeè pro pøedávání po¹ty.\n + +Lze je zadat buï úplnou IP adreso poèítaèe, nebo\n + +èásteènou IP adreso pro sítì. + !I_HOSTIPORNET + :E Host IP or network + :T IP poèítaèe nebo sítì + !I_NAMEALLOW + :E This is the list of hosts or domains which\n + +are allowed to use your server as a mail relay + :T Tento seznam obsahuje poèítaèe a domény, které\n + +mohou pou¾ívat tento poèítaè pro pøedávání e-mailu. + !H_HOSTORDOMAIN + :E Host or domain name + :T Jméno poèítaèe nebo domény + !T_BASECONF + :E Basic + :T Základní + !M_SUBRELAYCTRL + :E Mail relay controls + :T Ovládání pøedávání po¹ty + !M_SUBSPAMMERS + :E List of well known spammers + :T Seznam známých spammerù + !F_SPAMENABLE + :E Enable relay control (spammers) + :T Povolit filtrování pøi pøedávání (spam) + !E_MAINCONFIG + :E main email configuration + :T Hlavní konfigurace po¹ty + !E_MAILCONFLICT + :E Conflicting mail configuration:\n + +Domain/Host name %s can't be managed both\n + +by %s\n + +and %s + :T Naásledující konfigurace si neodpovídají:\n + +Jméno domény/poèítaèe %s nelze spravovat pomocí\n + + %s\n + +i %s + !E_IMPLICITCONFIG + :E implicit linuxconf rule + :T Implicitní pravidlo Linuxconfu + !E_MAINALIASES + :E aliases for your system + :T Aliasy pro tento poèítaè + !F_ESMTPREM + :E Expensive esmtp (on demand links) + :T Nároèné ESMTP + !T_MALIAS + :E Mail aliases + :T Aliasy pro e-mail + !F_MALIAS + :E Email alias + :T Alias pro e-mail + !E_NOVIRTALIAS + :E no fully qualified aliase for virtual domains + :T alias pro virtuální domény není úplný + !T_IPALLOWTHIS + :E Allow this host/domain to use your server(IP) + :T Povolit tomuto poèítaèi/doménì pou¾ívat tento server(IP) + !T_ALLOWTHIS + :E Allow this host/domain to use your server + :T Povolit tomuto poèítaèi/doménì pou¾ívat tento server + !T_RELAYTHIS + :E Relay to this host/network + :T Pøedávat tomuto poèítaèi/síti + !M_mailconf + :E Mail delivery system (sendmail) + :T Po¹tovní systém (sendmail) + !M_VPOP + :E Virtual POP accounts (mail only) + :T Virtuální úèty pro POP (jen e-mail) + !M_VPOLICIES + :E Policies for virtual domains + :T Pravidla pro virtuální domény + !H_VDOMAINS + :E Virtual email domains + :T Virtuální e-mailové domény + !F_USESMRSH + :E Use special shell smrsh + :T Pou¾ít speciální interpret pøíkazù smrsh + !E_NOSMRSH + :E The smrsh shell is not installed\n + +on this system.\n + +Generating a sendmail.cf using /bin/sh + :T Interpret smrsh není nainstalován.\n + +Generuji sendmail.cf s nastaveným /bin/sh + !T_MISC + :E Misc. + :T Rùzné + !T_DOMALIASES + :E Aliases + :T Aliasy + !F_UUCPMAXSIZE + :E Max size of uucp messages + :T Maximální velikost UUCP zprávy + !T_MVIRTUAL + :E email + :T e-mail + !E_VHOSTEXIST + :E Virtual email domain %s\nis already configured + :T Virtuální e-mailová doména %s\nu¾ je nastavená + !F_NEEDED + :E Virtual email domain needed + :T Je potøeba virtuální e-mailové domény + !E_MISSING + :E Mailconf: Virtual email domain %s is not configured\n + :T Mailconf: Virtuální e-mailová doména %s není nastavená\n + !E_DOMEXIST + :E Mailconf: Virtual email domain %s already configured\n + :T Mailconf: Virtuální e-mailová doména %s u¾ je nastavená\n + !E_IVLDOPT + :E Invalid option %s\n + :T Neplatný pøepínaè %s\n + !F_REDIR + :E Redirect messages to + :T Pøesmìrovat zprávy na + !E_IVLDCHAR + :E Invalid character in aliase + :T Neplatné znaky v aliasu diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/main.dic linuxconf-1.15/messages/cz/main.dic *** linuxconf-1.14r4/messages/cz/main.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/main.dic Sat Apr 3 03:45:04 1999 *************** *** 0 **** --- 1,355 ---- + @version 0 + !N_BUILDTREE + :E Linuxconf will now compute its menu tree.\n + +This may take a few seconds.\n + +Linuxconf does this either because you have upgraded linuxconf\n + +itself or because you have installed a new module. + :T Linuxconf nyní vytvoøí nabídkový strom.\n + +Chvíli to mù¾e trvat.\n + +Je to zpùsobeno pøechodem na novou verzi Linuxconfu\n + +nebo jste nainstaloval nový modul. + !MNU_BOOT + :E boot mode + :T Startovací mód + !MNU_LOGS + :E logs + :T Logovací soubory + !MNU_FILESYS + :E File systems + :T Souborové systémy + !MNU_GRAPH + :E Graphic mode (X) + :T Grafický mód (X) + !MNU_NET + :E Networking + :T Sí» + !MNU_USERS + :E Users accounts + :T U¾ivatelské úèty + !MNU_CONFIGS + :E Configure all configuration files + :T Nastavení v¹ech konfiguraèních souborù + !MNU_DATE + :E date & time + :T Datum a èas + !TITLE + :E Linuxconf + :T Linuxconf + !MNU_INTRO + :E This is the main entry to Linux configuration.\n + +\n + +Use the TAB key to navigate between the field\n + +section and the button bar at the bottom.\n + +Check out the help for this screen. It is an\n + +introduction to Linuxconf + :T Toto je vstupní bod do konfigurace Linuxu.\n + +\n + +Pomocí TAB lze pøepínat mezi polo¾kami\n + +a tlaèítkami dole. V pøípadì potøeby\n + +pou¾ijte nápovìdu pro tuto obrazovku,\n + +obsahuje úvod do Linuxconfu + !ERR_BOOT + :E Askrunlevel is only used\nat boot time\n + :T Askrunlevel se pou¾ívá jen pøi startu systému\n + !ERR_NAME + :E This program can't be renamed.\nIt is normally named linuxconf.\n + :T Tento program nelze pøejmenovat.\nNormálnì se jmenuje linuxconf.\n + !MNU_COMMANDS + :E Configure all commands and daemons + :T Nastavení v¹ech pøíkazù a démonù + !E_DEMOINIT + :E can't chroot(\"/demo_linuxconf\" (%m) + :T nelze provést chroot(\"/demo_linuxconf\" (%m) + !M_RUNLEVEL + :E init Run Level + :T inicializuj úroveò + !M_REBOOT + :E Shutdown/Reboot + :T Vypnout/Restartovat + !M_UPDATE + :E Activate configuration + :T Aktivuj konfiguraci + !T_CONTROL + :E Control panel + :T Ovládací panel + !I_CONTROL + :E This menu lets you do things, not configure. + :T Tato nabídka umo¾òuje vykonat jisté èinnosti, nikoli konfigurovat. + !Q_SYSTASK + :E to perform system task + :T vykonat systémový úkol + !MNU_CONTROL + :E Control panel + :T Ovládací panel + !N_NOJOB + :E Nothing to do! + :T Není co! + !F_REBOOT + :E Reboot + :T Restart + !F_HALT + :E Shutdown & halt + :T Vypnout + !F_DELAI + :E Delay before shutdown(minutes) + :T Èekání pøed vypnutím (minuty) + !F_MESSAGE + :E Message + :T Zpráva + !T_SHUTDOWN + :E Shutdown control panel + :T Ovládací panel pro vypnutí + !I_SHUTDOWN + :E You can force a reboot or a final shutdown\nof this computer + :T Mù¾ete si vynutit restart nebo finální vypnutí\ntohoto poèítaèe + !MNU_MODULE + :E Configure Linuxconf modules + :T Nastavení modulù Linuxconfu + !M_NETLEVEL + :E Switch network runlevel + :T Pøepni sí»ovou úroveò + !M_RESTART + :E Restart linuxconf + :T Restartuj linuxconf + !T_PRIVSHUTDOWN + :E May shutdown + :T Mù¾e vypnout OS + !T_PSYSCONTROL + :E 0-General system control + :T 0-Obecné ovládání systému + !P_ACTIVATECHG + :E enable configuration changes + :T povol zmnìny v konfiguraci + !P_SHUTDOWN + :E shutdown the computer + :T vypni poèítaè + !P_NETLEVEL + :E switch network operation level + :T zmìn operaèní úroveò sítì + !T_PACTCHG + :E May activate config changes + :T Mù¾e aktivovat zmìny v konfiguraci + !T_PNETLEVEL + :E May switch network mode + :T Mù¾e pøepnout sí»ový mód + !T_PVIEWLOGS + :E May view system logs + :T Mù¾e prohlí¾et systémové log soubory + !F_HTMLTIMEOUT + :E Html timeout + :T Èekací doba HTML + !T_FEATURES + :E Features + :T Vlastnosti + !I_FEATURES + :E This screen defines some special behavior\nof linuxconf. + :T Tato obrazovka definuje nìkterá speciální chování linuxconfu. + !E_HTMLTIMEOUT + :E The html timeout must be 5 minutes or higher + :T Èekací doba HTML musí být alespoò 5 minut + !P_VIEWLOGS + :E view system logs + :T zobraz systémové logovací soubory + !M_BOOTLOGS + :E Boot messages + :T Zprávy generované pøi startu + !M_LINUXCONFLOGS + :E Linuxconf logs + :T Logovací soubory Linuxconfu + !T_SYSLOGS + :E System logs + :T Systémové logovací soubory + !I_SYSLOGS + :E This menu lets you see the different messages generated\n + +by the system. These messages are normally checked to\n + +either detect some problems or as a proof that some event\n + +happeneded. + :T Tato obrazovka umo¾òuje prohlí¾et rùzné zprávy generované\n + +systémem. Tyto zprávy jsou obvykle pou¾ívány pro\n + +objevení problémù nebo jako dùkaz, ¾e se nìjaká událost\n + +opravdu stala. + !M_FEATURES + :E Features + :T Vlastnosti + !I_HTMLINTRO + :E \n + +This is the main entry to Linux configuration.\n + +Check out the help for this screen. It is an\n + +introduction to Linuxconf\n + :T \n + +Toto je vstupní bod do konfigurace Linuxu.\n + +V pøípadì potøeby pou¾ijte nápovìdu pro tuto obrazovku\n + +Obsahuje úvod do Linuxconfu\n + !E_HTTP + :E --http and --demo may only be used by root + :T --http a --demo mù¾e pou¾ít jedinì root + !MNU_ADD_ON + :E Override Linuxconf addons + :T Pøepsání addon Linuxconfu + !MNU_CTRLFILE + :E Control files and systems + :T Nastavení souborù a systémù + !T_CTRLFILE + :E Linuxconf management + :T Správa Linuxconfu + !I_CTRLFILE + :E This menu lets you manage Linuxconf's\nbehavior\n + :T Tato obrazovka umo¾òuje spravovat chování Linuxconfu + !MNU_ADD_ON_ORIG + :E Create Linuxconf addons + :T Vytvoøit Linuxconf addon + !F_KBDMAP + :E Keyboard map + :T Mapa klávesnice + !F_NONE + :E Use default keymap + :T Pou¾ij implicitní mapu + !T_CHGKMAP + :E Changing keyboard map + :T Mìním mapu klávesnice + !I_CHGMAP + :E You have changed the keyboard mapping specification.\n + +Do you want to activate the change now ?\n + +It will be activated at each reboot + :T Specifikace mapy klávesnice zmìnìná.\n + +Chcete tyto zmìny aktivovat hned ?\n + +Tyto zmìny budou aktivovány pøi ka¾dém restartu + !M_SERVICE + :E Control service activity + :T Ovládání aktivních slu¾eb + !Q_SERVICE + :E to enable/disable some services + :T vypnout/zapnout slu¾by + !M_TASKS + :E Configure superuser scheduled tasks + :T Nastavení úloh naplánovaných správcem + !M_CONFIG + :E Config + :T Konfigurace + !M_CONTROL + :E Control + :T Ovládání + !E_VDB + :E --vdb may only be used by root\n + :T --vdb mù¾e pou¾ít jedinì root\n + !MNU_PERMS + :E Configure file permission and ownership + :T Nastavení pøístupových práv a vlastnictví souborù + !F_LANGAGE + :E Language + :T Jazyk + !E_SETKEYMAP + :E --setkeymap may only be used by root\n + :T --setkeymap mú¾e pou¾ít jedinì root\n + !F_USEGUI + :E May use the GUI mode + :T Lze pou¾ívat GUI mód + !P_ARCHIVE + :E archive config files + :T archivuj konfiguraèní soubory + !M_CONFVER + :E Configure system profiles + :T Nastavení systémových profilù + !M_ARCHIVE + :E Archive configurations + :T Archivuj konfigurace + !M_CFGVERSION + :E Switch system profile + :T Pøepni systémový profil + !P_EXTRACT + :E extract config files + :T obnov konfiguraèní soubory + !P_SUMCONF + :E sum config files + :T spoèítej konfiguraèní soubory + !P_DIFF + :E view config changes + :T zobraz zmìny v konfiguraci + !P_HISTORY + :E view config history + :T zobraz historii konfigurace + !F_USECOLORS + :E May use the colors in text mode + :T Lze pou¾ít barvy v textovém módu + !F_HTMLBODYPARM + :E Html body parameters + :T Parametry pro tìlo HTML + !P_HINT + :E obtain configuration hints + :T získej konfiguraèní rady + !I_LANGMODE + :E Automatic language selection + :T Automatická volba jazyka + !I_CONTROLDEMO + :E This menu lets you do things, not configure\n + +\n + +.*** Not operational in DEMO mode *** + :T tato obrazovka umo¾òuje vykonávat èinnosti, nikoli konfigurovat\n + +\n + +.*** Nefunkèní v DEMO módu *** + !E_SETMOD + :E --setmod and --unsetmod may only be done by root\n + :T --setmod and --unsetmod mù¾e pou¾ít jedinì root\n + !F_PREFIXTRIG + :E Trigger for filter + :T Práh pro filter + !M_MOUNTFS + :E Mount/Unmount file systems + :T Pøipojit/odpojit souborové systémy + !E_NOMISCSERV + :E No misc services registered + :T ®ádné pøidané slu¾by nejsou registrované + !T_MISCSERV + :E Miscellaneous services + :T Rùzné slu¾by + !MNU_MISCSERV + :E Miscellaneous services + :T Rùzné slu¾by + !I_USAGE + :E linuxconf main command line options\n + + --archive [ sub-systems ... ]\n + + --demo\n + + --diff [ sub-systems ... ]\n + + --extract [ sub-systems ... ]\n + + --history [ sub-systems ... ]\n + + --hint service key\n + + --gui\n + + --guiproto\n + + --help\n + + --helpfile\n + + --http\n + + --md5sum [ sub-systems ... ]\n + + --modulemain modulename [ args ... ]\n + + --setkeymap keymapfile\n + + --setmod modulename_or_path\n + + --shutdown\n + + --status\n + + --text [--mono]\n + + --unsetmod modulename_or_path\n + + --update\n + + --vdb ...\n + :T hlavní pøepínaèe pøíkazové øádky linuxconfu\n + + --archive [ sub-systems ... ]\n + + --demo\n + + --diff [ sub-systems ... ]\n + + --extract [ sub-systems ... ]\n + + --history [ sub-systems ... ]\n + + --hint service key\n + + --gui\n + + --guiproto\n + + --help\n + + --helpfile\n + + --http\n + + --md5sum [ sub-systems ... ]\n + + --modulemain modulename [ args ... ]\n + + --setkeymap keymapfile\n + + --setmod modulename_or_path\n + + --shutdown\n + + --status\n + + --text [--mono]\n + + --unsetmod modulename_or_path\n + + --update\n + + --vdb ...\n + !I_CMDLINE + :E Command line usage + :T Pou¾ití pøíkazové øádky diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/misc.dic linuxconf-1.15/messages/cz/misc.dic *** linuxconf-1.14r4/messages/cz/misc.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/misc.dic Sat Apr 3 03:44:38 1999 *************** *** 0 **** --- 1,270 ---- + @version 0 + !E_SETOWNER + :E Can't set ownership of file\n%s\n\nUser %s does not exist\n + :T Nelze nastavit vlastnictví souboru\n%s\n\nU¾ivatel %s neexistuje\n + !E_SETGROUP + :E Can't set group ownership of file\n%s\n\nGroup %s does not exist\n + :T Nelze nastavit skupinové vlastnictví souboru \n%s\n\nSkupina %s neexistuje\n + !F_CORRPATH + :E Correct path + :T Správná cesta + !T_MODCONFPATH + :E Modifying a config file path + :T Mìním cestu ke konfiguraènímu souboru + !I_MODCONFPATH + :E You can redefined the path of a\n + +configuration file. If you do so\n + +Linuxconf will use the new path from now on.\n + +\n + +Be advise that other utilities are on there\n + +own and may forget to notice. Unless you\n + +really knows what you are doing, don't play\n + +here.\n + :T Zde lze pøedefinovat cestu ke konfiguraènímu\n + +souboru. V tom pøípadì bude od této chvíle\n + +Linuxconf pou¾ívat tuto novou cestu.\n + +\n + +Nezapomìòte, ¾e jiné programy si této\n + +zmìny nemusí v¹imnout. V pøípadì,\n + +¾e si nejste zcela jisti, radìjii nic\n + +nemodifikujte.\n + !T_LISTCONF + :E List of configuration files + :T Seznam konfiguraèních souborù + !I_LISTCONF + :E This is the list of all file managed\n + +by linuxconf. For each file, you can access\n + +directly a help file describing its purpose.\n + +The letters preceding the file name indicate\n + +how this file is managed by Linuxconf. Press help\n + +for more info + :T Toto je seznam souborù, které lze spravovat\n + +linuxconfem. Pro ka¾dý soubor je k dispozici\n + +nápovìda s jeho popisem a úèelem.\n + +Písmena pøed názvem souboru indikují\n + +jak Linuxconf spravuje tento soubor. Více\n + +v nápovìdì. + !P_MODCONF + :E modify a configuration file path + :T modifikuj cestu ke konfiguraènímu souboru + !P_COPYSYSFILES + :E to copy system files + :T kopírovat systémové soubory + !E_CANTDO + :E Can't %s file %s\n%s + :T Nelze %s soubor %s\n%s + !E_WRITE + :E write + :T zapsat + !E_READ + :E read + :T pøeèíst + !E_UPDATE + :E Update %s + :T Zmìò + !E_OUTOFMEM + :E Out of memory\n + :T Nedostatek pamìti\n + !T_QUIT + :E Quit without saving ? + :T Konec bez ulo¾ení? + !I_QUIT + :E You have modified the information somewhat\nAre you sure you want to quit ?\n + :T Modifikoval jste informace\nOpravdu chcete skonèit?\n + !T_ERROR + :E Error + :T Chyba + !I_ICONERROR + :E Error + :T Chyba + !T_PLEASE + :E Please note + :T Prosím, v¹imìte si + !I_ICONNOTICE + :E Notice + :T Pozor + !T_AREYOUSURE + :E Are you sure ? + :T Jste si jist? + !I_DELRECORD + :E Are you sure you want to delete this record ? + :T Jste si jist, ¾e chcete vymazat tento záznam? + !F_MODPATH + :E Module path + :T Cesta k modulu + !F_MODACTIVE + :E This module is active + :T Tento modul je aktivní + !I_EMPTYSLOT + :E Select [Add] to add one empty slot in the dialog + :T Pomocí [Pøidej] pøidáte jednu prázdnou polo¾ku do dialogového okna + !T_MODLIST + :E List of modules + :T Seznam modulù + !I_MODLIST + :E You can add Linuxconf's module here.\n + +The modules are loaded each time linuxconf is used\n + +and enhance its functionnality. + :T Zde je mo¾né pøidat modul do Linuxconfu.\n + +Pøi ka¾dém spu¹tìní Linuxconfu jsou moduly nahrané do pamìti\n + +a tím roz¹iøují mo¾nosti Linuxconfu. + !E_MODNOPATH + :E Module %s does not exist\n + :T Modul %s neexistuje\n + !E_LOADMOD + :E Can't load module\n\t%s\n%s + :T Nelze nahrát modul\n\t%s\n%s + !E_COMPATMOD + :E Incompatible module %s\nget a new one or recompile it + :T Nekompatibilní modul %s\nzískejte novou verzi nebo modul znovu pøelo¾te + !H_CONFIGP + :E Path\tStatus\tSubsys + :T Cesta\tStav\tSubsystém + !L_ARCHIVING + :E Archiving %s, version %s\n + :T Archivuji %s, verze %s\n + !M_SUBBASE + :E Base/Station specific + :T Základní/Specifické pro poèítaè + !M_NETCLIENT + :E Network connectivity + :T Sí»ové propojení + !L_UNARCHIVING + :E Un-Archiving %s, version %s\n + :T Získávám z archivu %s, verze %s\n + !I_ERASING + :E File did not exist, erasing %s\n + :T Soubor neexistoval, ma¾u %s\n + !F_CONFVERMODE + :E Operation mode + :T Pracovní mód + !I_AUTO + :E Automatic + :T Automatický + !T_CONFIGS + :E Configurations + :T Konfigurace + !I_ADDVER + :E Select [Add] to create a new configuration tree + :T Pomocí [Pøidej] vytvoøte nový strom konfigurací + !I_CONFVER + :E You can save/archive all the configuration of this station\n + +keep multiple versions around and switch at will\n + +between them + :T Mù¾eten ulo¾it/archivovat celou konfiguraci\n + +tohoto poèítaèe a zároveò si urd¾ovat více verzí\n + +a libovolnì mezi nimi pøepínat + !T_CONFVER + :E Configuration versioning + :T Správa verzí konfigurací + !T_NEWCONF + :E New configuration name + :T Jméno nové konfigurace + !E_CONFEXIST + :E This configuration name already exist\npick another one + :T Toto jméno konfigurace u¾ existuje\nVyberte jiné + !T_ONECONF + :E Configuration %s + :T Konfigurace %s + !I_ONECONF + :E You must associate each subsystem with\n + +a configuration family. If you leave one field blank\n + +this subsystem won't be archived + :T Musíte asociovat ka¾dý subsystém\n + +s rodinou konfigurace. V pøípadì, ¾e necháte jednu polo¾ku prázdnou\n + +tento subsystém nebude archivován + !T_OFFICE + :E Office + :T Kanceláø + !T_HOME + :E Home + :T Doma + !T_HOMEOFFICE + :E Home-Office + :T Doma-Kanceláø + !M_HARDWARE + :E Hardware setup + :T Nastavení hardware + !F_TITLE + :E Title/comment + :T Titulek/Komentáø + !T_PICKVER + :E Pick a version + :T Výbìr verze + !I_PICKVER + :E Pick a new version to activate.\n + +All configuration files of the current version\n + +will be archived and replaced by configuration files\n + +of the new version. + :T Vyberte novou verzi, která se má aktivovat.\n + +V¹echny konfiguraèní soubory aktuální verze\n + +budou archivovány a pøepsány konfiguraèními\n + +soubory nové verze. + !I_ARCHCONF + :E Archiving %s\n + :T Archivuji %s\n + !I_EXTRCONF + :E Extracting %s\n + :T Získávám %s\n + !I_KEEPINGOLD + :E File %s was never archived, keeping current copy\n + :T Soubor %s nebyl nikdy archivován, nechávám aktuální kopii\n + !E_CFGVIRTUAL + :E You can't edit a virtual config file + :T Nelze editovat virtuální konfiguraèní soubor + !M_STATIONID + :E Station identity + :T Identifikace stanice + !M_NETACCESS + :E Network access + :T Sí»ový pøístup + !M_PROFILEDEF + :E System profile definitions + :T Definice systémových profilù + !E_ARCHFAILED + :E Archiving failed\nAborting extraction of the selected profile + :T Archivace selhala\nPøeru¹uji získání vybraného profilu + !F_DEFFAM + :E Default archiving family + :T Implicitní archivaèní rodina + !T_HOMECONFIG + :E Home configuration + :T Konfigurace na doma + !T_OFFICECONFIG + :E Office configuration + :T Konfigurace pro kanceláø + !T_SUBSYS + :E Archiving families + :T Archivuji rodiny + !E_EXTRFORM + :E File %s can't be extract properly.\n + +The first line of the archive is not\n + +a status line. + :T Soubor %s nelze vpoøádku získat.\n + +První rádek archivu neobsahuje\n + +stavovou informaci. + !E_EXTRFORMLOG + :E File %s can't be extracted properly\n + :T Soubor %s nelze vpoøádku získat\n + !I_CURVERIS + :E Current version + :T Aktuální verze + !M_USERACCOUNTS + :E User accounts + :T U¾ivatelské úèty + !M_USERPRIV + :E User privileges + :T U¾ivatelská práva + !T_COMMON + :E Common + :T Spoleèné + !I_LASTVERIS + :E Last version + :T Poslední verze + !E_APIVERSION + :E Incompatible module API version \"%s\"\n + +\"%s\" requested version %d.\n + +Version %s is provided. + :T Nekompatibilní verze API modulù \"%s\"\n + +\"%s\" po¾adovaná verze %d.\n + +K dispozici je verze %s. diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/motd.dic linuxconf-1.15/messages/cz/motd.dic *** linuxconf-1.14r4/messages/cz/motd.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/motd.dic Fri Mar 26 10:46:44 1999 *************** *** 0 **** --- 1,16 ---- + @version 0 + !M_motd + :E Message of the day + :T Zpráva dne + !T_PMISC + :E 9-Miscellaneous + :T 9-Rùzné + !F_MOTD + :E Text of the message + :T Text zprávy + !I_MOTD + :E The following message is shown each time\na user is login in + :T Následující zpráva se zobrazí pøi ka¾dém\npøhlá¹ení u¾ivatele + !T_USAGE + :E Module motd\n\n No command line option\n + :T Modul motd\n\n Bez pøepínaèú pøíkazové øádky\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/mrtg.dic linuxconf-1.15/messages/cz/mrtg.dic *** linuxconf-1.14r4/messages/cz/mrtg.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/mrtg.dic Fri Apr 9 13:09:58 1999 *************** *** 0 **** --- 1,80 ---- + @version 0 + !M_MRTG + :E Multi Router Traffic Grapher (MRTG) + :T Multi Router Traffic Grapher (MRTG) + !E_IVLDDIREC + :E Invalid directive: %s\n + :T Neplatná direktíva: %s\n + !F_ID + :E Graph ID + :T Jméno grafu + !F_TITLE + :E Graph title + :T Titulek grafu + !F_TOP + :E Top of the page + :T Zaèátek stránky + !F_MAXBYTES + :E Maximum rate + :T Maximální rychlost + !I_DELRECORD + :E Select [Del] to delete this record + :T Pomocí [Sma¾] lze smazat tento záznam + !T_GRAPH + :E Graph specification + :T Specifikace grafu + !I_ADDCONF + :E Select [Add] to add a new configuration + :T Pomocí [Pøidej] lze pøidat novou konfiguraci + !T_GRAPHS + :E Graphs list + :T Seznam grafù + !I_GRAPHS + :E Here is the list of all graphs collected\nby MRTG + :T Toto je seznam v¹ech grafù generovaných MRTG + !T_SNMPREQ + :E SNMP request + :T SNMP po¾adavek + !F_FEATURE + :E SNMP feature + :T SNMP funkce + !I_ADAPTOR0 + :E Network adaptor 0 + :T Sí»ový adaptér 0 + !F_SPCCOMMAND + :E Command + :T Pøíkaz + !E_AMBIGIOUS + :E Can't use special command and SNMP request\nat the same time + :T Nelze pou¾ít speciální píkaz i po¾adavek SNMP\nnajednou + !E_ATLEASTREQ + :E You must specify either\n + +a special data collection command\n + +or an SNMP request (All three fields)\n + :T Nutno specifikovat buï\n + +speciální pøíkaz pro získávání dat\n + +nebo po¾adavek SNMP (V¹echny tøi polo¾ky)\n + !I_ADAPTOR1 + :E Network adaptor 1 + :T Sí»ová karta 1 + !I_ADAPTOR2 + :E Network adaptor 2 + :T Sí»ová karta 2 + !F_HOST + :E Host + :T Poèítaè + !F_COMMUN + :E SNMP community + :T Komunita SNMP + !E_IDEMPTY + :E You must provide an ID + :T Nutno zadat jméno + !E_NOSPACEID + :E No space allowed in the ID + :T Jméno nesmí obsahovat mezery + !T_PRIVMRTG + :E MRTG administrator + :T Administátor MRTG + !T_PMISC + :E 9-Miscellaneous + :T 9-Rùzné diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/netadm.dic linuxconf-1.15/messages/cz/netadm.dic *** linuxconf-1.14r4/messages/cz/netadm.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/netadm.dic Fri Apr 9 11:12:38 1999 *************** *** 0 **** --- 1,176 ---- + @version 0 + !M_NETADM + :E cluster administration + :T administrace clusteru + !T_USAGE + :E Module netadm\n\n --import admin-group\n --remadm [ host ]\n --slave\n + :T Modul netadm\n\n --import admin-group\n --remadm [ poèitaè ]\n --slave\n + !F_ID + :E Group ID + :T ID skupiny + !T_MEMBERS + :E members + :T èlenové + !T_SUBSYS + :E Sub-systems + :T Sub-systémy + !T_CLUSDEF + :E Cluster specifications + :T Specifikace clusteru + !I_CLUSDEF + :E You must specify which machine are member of the cluster\n + +and which sub-systems are managed from this station.\n + +All these sub-systems will be synchronised on the\n + +various members of the administration cluster. + :T Musíte specifikovat, které poèítaèe jsou èlenové clusteru\n + +a které sub-systémy se mají spravovat z tohoto poèítaèe.\n + +V¹echny tyto sub-systémy budou synchronizovány na\n + +rùzných èlenech administraèního clusteru. + !E_NOSPACEID + :E No space allowed in the ID + :T ID nesmí obsahovat mezery + !F_DESC + :E Description + :T Popis + !T_CLUSTERS + :E Administration groups + :T Administraèní skupiny + !I_CLUSTERS + :E Here is the list of administration groups. + :T Tady je seznam administraèních skupin. + !M_ADMINGROUPS + :E Admin groups definitions + :T Definice administraèních skupin + !M_ADMINTREE + :E Admin trees management + :T Správa administraèních stromù + !M_REMOTEADMIN + :E managing remote hosts + :T správa vzdálených poèítaèù + !T_NETADMIN + :E NETADMIN + :T NETADMIN + !T_NETADMINT + :E Network administrator + :T Sí»ový správce + !I_NETADMINT + :E This package allows you to manage\n + +other hosts on the network, either one by one or as groups. + :T Tato obrazovka umo¾òuje spravovat\n + +ostatní poèítaèe sí»e, a to jednotlivì nabo jako skupinu. + !E_NOTREE + :E Administration tree %s does not exist + :T Administraèní strom %s neexistuje + !F_TREENAME + :E Tree name + :T Jméno stromu + !I_ADDTREE + :E You must enter a name for this new administration tree.\n + +This will correspond to a new sub-directory in\n + +%s + :T Nutno zadat jméno nového administraèního stromu.\n + +To bude odpovídat jménu nového podadresáøw v\n + +%s + !T_ADDTREE + :E New administration tree + :T Nový administraèní strom + !E_NOSPACE + :E No space allowed in name + :T Mezery nejsou povoleny ve jménì + !T_ADMINTREES + :E Administration trees + :T Administraèní stromy + !I_ADMINTREES + :E Here are the various administration trees\n + +already defined. You can add new one.\n + +An administration tree is a virtual workstation\n + +you can manage from here. The various configuration\n + +file may be distributed to other workstations/servers\n + +on the network. + :T Rùzné administraèní stromu u¾ jsou definovány.\n + +Mù¾ete pøidat nový. Administraèní strom\n + +je virtuální pracovní statnice, kterou lze\n + +spravovat odsud. Rùzné konfiguraèní soubory lze distribuovat\n + +na jiné pracovní stanice nebo servery. + !F_ADMTREE + :E Administration tree + :T Administraèní strom + !E_CREATEDIR + :E Can't create directory %s\n(%s) + :T Nelze vytvoøit adresáø %s\n(%s) + !B_PUBLISH + :E Publish + :T Rozeslat + !N_PUBLISHDONE + :E Admin group '%s' published + :T Administraèní skupina '%s' rozeslána + !I_PUBLISHING + :E Publishing admin tree %s to group %s\n + :T Rozesílání administraèního stromu %s skupinì %s\n + !M_PUBLISHING + :E Publishing admin tree %s + :T Rozesílání administraèního stromu %s + !I_IMPORTING + :E Importing admin group %s\n + :T Importování administraèní skupiny %s\n + !P_IMPORT + :E to import configuration files + :T importovat konfiguraèní soubory + !E_OUTOFSYNC + :E Protocol out of sync + :T Protocol není zosynchronizován + !E_EXPORTERR + :E Export error\n%s + :T Chyba pøi exportu\n%s + !E_STAT + :E Can't stat file\n%s + :T Nelze získat soubor \n%s + !F_ROOTPASS + :E root password + :T heslo roota + !I_EXPORTINGTO + :E Exporting to %s\n + +\n + +Please enter root password so linuxconf\n + +can connect to the netadm special account\n + +using ssh (secure shell) + :T Exportuji na %s\n + +\n + +Vlo¾te, prosím, root heslo, aby mohl\n + +Linuxconf pou¾ít ssh (secure shell) pro pøihlá¹ení na\n + +speciální konto netadm + !B_EXPORT + :E Export + :T Export + !N_UPDATED + :E Station %s updated + :T Poèítaè %s upraven + !P_ROOTONLY + :E do remote administration + :T vzdálenì administrovat + !N_GUIMODEONLY + :E This function is only available when running\nthe graphical user interface. + :T tato funkce je k dispozici jen v grafickém prostøení. + !F_REMHOST + :E Host to administer + :T Spravovat poèítaè + !T_REMADMIN + :E Remote administration + :T Vzdálená administrace + !N_CONNECTING + :E Connecting to %s + :T Pøipojuji se k %s + !I_EXPORTOK + :E The administration group %s\n + +has been successfully copied to machine\n + +%s.\n + +Do you want to install the various new config files\n + +immediatly and activate the changes ? + :T Administraèní skupina %s\n + +byla úspì¹nì poslána na poèítaè\n + +%s.\n + +Chcete hned nainstalovat nové konfiguraèní soubory\n + +a aktivovat zmìny? + !T_EXPORTOK + :E Export completed + :T Export hotov diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/netconf.dic linuxconf-1.15/messages/cz/netconf.dic *** linuxconf-1.14r4/messages/cz/netconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/netconf.dic Fri Apr 9 13:04:25 1999 *************** *** 0 **** --- 1,1652 ---- + @version 0 + !H_DAEMONS + :E Name\tPath\tMod. + :T Jméno\tCesta\tMod. + !X_EXECUTING + :E Executing: %s\n + :T Vykonání: %s\n + !X_WOULDEXEC + :E Would have executed \"%s\" but not allowed\n + :T Mìlo být vykonáno \"%s\" ale nebylo povoleno\n + !X_SIGNALING + :E %s %s with signal %d return %d\n + :T %s %s se signálem %d vrátil %d\n + !E_MISSINFO + :E Missing information about daemon or utility %s\nin configuration file %s\n + :T Chybìjící informace o démonovi nebo utilitì %s\n v konfiguraèním souboru %s\n + !T_SCOPE + :E Netconf scope + :T Oblast Netconfu + !I_SCOPE + :E This dialog let you configure the different commands\n + +and daemon linuxconf is using.\n + +If you deselect one command, then you must\n + +managed this yourself. This facility\n + +is provided to help integrate linuxconf into\n + +a working setup.\n + +*** Unless you know what you are doing ***\n + +*** fiddling here is not recommended ***\n + :T Tato obrazovka umo¾òuje nastavení rùzných pøíkazù\n + +a démonù, kterí pou¾ívá Linuxconf.\n + +Jestli¾e odeberete pøíkaz, musíte\n + +ho spravovat ruènì. Tato mo¾nost je\n + +pro jednodu¹¹í zapojení Linuxconfu\n + +do u¾ existujícího prostøedí.\n + +*** Pokud si nejste zcela jisti ***\n + +*** radìji si bì¾te hrát jinam ***\n + !X_SETNISDOM + :E Set NIS domain to %s\n + :T Nastavit doménu NIS na %\n + !E_UNKNOWNDAEMON + :E Unknown daemon :%s:....\ndon't know how to support it\n + :T Neznámý démon :%s:....\nBez podpory\n + !P_CHGDATE + :E correct the date and time + :T upravit datum a èas + !F_ZONE + :E zone + :T zóna + !F_STORECMOS + :E Store date in CMOS + :T Ulo¾it datum do CMOS + !F_UNIVERSAL + :E universal format(GMT) + :T svìtový formát(GMT) + !F_GETDATE + :E Get date from server(s) + :T Získat datum ze serveru(ù) + !T_TIME + :E Time + :T Èas + !F_HOUR + :E Hour + :T Hodiny + !F_MINUTES + :E Minutes + :T Minuty + !F_SECONDS + :E Seconds + :T Sekundy + !T_DATE + :E Date + :T Datum + !F_YEAR + :E Year + :T Rok + !F_MONTH + :E Month + :T Mìsíc + !F_DAYOFMONTH + :E Day of month + :T Den v mìsíci + !T_DATETIME + :E Workstation date & time + :T Datum a èas poèítaèe + !I_DATETIME + :E Fill this form to indicate how the workstation must\nget its date and time\n + :T Nastavení, ja má tento poèítaè získat\naktuální datum a èas\n + !E_CANTPROBE + :E Can't probe current setup of network device %s\n + +No way to activate the network\n + :T Nelze ovìøit aktuální nastavení sí»ového zaøízení %s\n + +Neexistuje zpùsob aktivace sítì\n + !E_NODEVICE + :E Networking was configured\n + +for the interface %s\n + +but this device is not configured\n + +in the kernel\n + :T Sí» byla nakonfigurována\n + +pro rozhraní %s\n + +ale toto zaøízení není v kernelu\n + +nakonfigurováno\n + !E_IVLEXPORTS + :E Invalid line %d in file %s\n%s\n + :T Neplatná øádka %s v souboru %s\n%s\n + !F_PATHEXP + :E Path to export + :T Exportovaná cesta + !F_CLIHOSTS + :E Client name(s) + :T Jméno klieta(ù) + !F_COMMENT + :E Comment (opt) + :T Komentáø (nepov) + !T_ONEEXPORT + :E One exported file system + :T Jeden exportovaný souborový systém + !T_EXPORTED + :E Exported file systems + :T Exportované souborové systémy + !I_EXPORTED + :E Setup file systems available for client hosts\n + +Those systems will be accessible through NFS\n + :T Nastavení souborových systému, které jsou k dispozici klientùm\n + +Tyto systémy budou pøístupné pomocí NFS\n + !F_ADDONE + :E Select [Add] to add a new definition + :T Pomocí [Pøidej] lze pøidat novou definici + !T_ROUTEHOSTS + :E Route to other hosts + :T Cesta k ostatním poèítaèùm + !T_ROUTENET + :E Route to other networks + :T Cesta k ostatním sítím + !I_ROUTEHOSTS + :E If your network has access to other networks\n + +you must tell how to reach those networks\n + :T Jestli¾e va¹e sí» má pøístup k jiným sítím,\n + +musíte uvést, jak se do tìchto sítí dostat\n + !I_TOADDROUTE + :E Select [Add] to add a new route + :T Pomocí [Pøidej] lze pøidat nové smìrování + !M_DEFROUTE + :E Defaults + :T Implicitní + !M_ROUTENET + :E other routes to networks + :T smìrování do ostatních sítí + !M_ROUTEHOSTS + :E other routes to hosts + :T smìrování k ostatním poèítaèùm + !M_ROUTED + :E the routed daemon + :T démon routed + !M_SET + :E Set + :T Nastavit + !M_CONFIG + :E Configure + :T Konfigurovat + !T_ROUTES + :E Routes to other networks + :T Smìrování do ostatních sítí + !I_ROUTES + :E If your network has access to other networks\n + +you must tell how to reach those networks\n + +For many setup, simply setting the default route\n + +is good enough\n + +\n + +If you only talk to machines on the local network\n + +then all this is not necessary.\n + :T V pøípadì, ¾e va¹e sí» má pøístup k jiným sítím,\n + +musíte uvést, jak se k tìmto sítím dostat.\n + +Pro vìt¹ínu sítí staèí nastavit implicitní cestu.\n + +\n + +IV pøípadì, ¾e pou¾íváte jen poèítaèe na lokální síti,\n + +tyto nastavení nejsou nutné.\n + !I_DEFGTW + :E Enter the IP number of the main gateway\n + +And indicate if this machine is allowed to\n + +route IP packets + :T Vlo¾te IP adresu hlavní brány\n + +a nastavte, zda tento poèítaè\n + +smí smìrovat IP pakety + !F_PRIMNAME + :E Primary name + domain + :T Primární jméno + doména + !F_ALIASES + :E Aliases (opt) + :T Aliasy (nepov) + !F_IPADR + :E IP address + :T IP adresa + !F_NETADR + :E Network address (opt) + :T Sí»ová adresa (nepov) + !F_NETMASK + :E Netmask (opt) + :T Sí»ová maska (nepov) + !E_NEEDIP + :E Adaptor %d: Missing IP number + :T Adaptér %d: Chybí IP adresa + !F_IVLDIP + :E Invalid IP number: %s + :T Neplatná IP adresa: %s + !F_IVLDNETIP + :E Invalid network number:%s + :T Neplatné èíslo sítì:%s + !E_IVLMASK + :E Invalid netwask: %s + :T Neplatná sí»ová maska: %s + !Q_NOIP + :E Are you sure + :T Jste si jist? + !I_NOIP + :E No IP address was entered for the first\n + +ethernet adaptor. Either it is a mistake\n + +(you forgot) or you don't have a network\n + +adaptor at all.\n + +\n + +If you don't have any network adaptor,\n + +it is a good idea to enter the IP number\n + +127.0.0.1, which correspond to a dummy\n + +internal network. This may help later with\n + +network aware application such as X11.\n + +\n + +Do you want me to enter 127.0.0.1 for you ? + :T Pro první ethernetovou sí»ovou kartu\n + +nebyla zadána IP adresa. Buï je to chyba\n + +(zapomìl jste) nebo nemáte nainstalovanou\n + +¾ádnou sí»ovou kartu.\n + +\n + +V druhém pøípadì je celkem dobré\n + +nastavit IP adresu 127.0.0.1,\n + +která odpovídá hloupému internímu\n + +sí»ovému zaøízení. To mù¾e posléze\n + +ulehèit nastavení aplikací, které.\n + +pracují se sítí, napø. X11.\n + +\n + +Chcete nastavit 127.0.0.1? + !T_THISHOST + :E This host basic configuration + :T Základní informace o tomto poèítaèi + !I_THISHOST + :E You are allowed to control the parameters\n + +which are specific to this host and related\n + +to its main connection to the local network + :T Mù¾ete ovládat parametry, které jsou\n + +platné pro tento poèítaè a souvisí\n + +s jeho hlavním spojením s lokální sítí + !E_OUTOFMEMORY + :E Out of memory\n + :T Nedostatek pamìti\n + !F_IPNUM + :E IP number + :T IP adresa + !T_HOSTNETDEF + :E host/network definition + :T definice poèítaèe/sítì + !E_IVLIPNUM + :E Invalid IP number + :T Neplatná IP adresa + !I_HOSTSDEF + :E Select a host/network definition to modify + :T Vyberte definici poèítaèe/sítì, kterou chcete upravit + !I_ADDDEF + :E Select [Add] to add a new definition + :T Pomocí [Pøidej] lze pøidat novou definici + !F_FIRSTETH + :E First ethernet adaptor + :T První sítový adaptér pro ethernet + !F_SECOND + :E Second + :T Druhý + !F_THIRD + :E Third + :T Tøetí + !F_FOURTH + :E Fourth + :T Ètvrtý + !F_FIRSTSLIP + :E First SLIP/CSLIP channel + :T První kanál SLIP/CSLIP + !F_FIRSTPPP + :E First PPP channel + :T První kanál PPP + !E_IVLDNETLEVEL + :E File %s\n + +contains an invalid netconf level: %d\n + +It must be 0, 1 or 2.\n + +Just run \"netconf --runlevel\" with an\n + +explicit value (local, client, or server)\n + +to fix this.\n + +\n + +Assuming \"local\" configuration for now.\n + :T Soubor %s\n + +obsahuje neplatnou úroveò netconf: %d\n + +Ta musí být 0, 1 nebo 2.\n + +Pro nápravu staèí spustit \"netconf --runlevel\"\n + +s pøíslu¹nou hodnotou (lokální, klient, nebo server)\n + +\n + +Pro teï pøedpokládám konfiguraci \"local\".\n + !E_CANTOPEN + :E Can't open file %s\n(%s)\n + :T Nelze otevøít soubor %s\n(%s)\n + !P_PERMUPDATE + :E update the status of the system + :T obnovit stav systému + !X_LIST + :E List of things required to activate current configuration\n + :T Seznam èinností nutných pro aktivaci aktuální konfigurace\n + !M_INFOR + :E Basic host information + :T Základní informace + !M_HOSTS + :E Information about other hosts + :T Informace o jiných poèítaèích + !M_NETWORKS + :E Information about other networks + :T Informace o jiných sítích + !M_ROUTING + :E Routing and gateways + :T Smìrování a brány + !M_RESOLV + :E Name server specification (DNS) + :T Specifikace name serveru (DNS) + !M_NIS + :E Network Information System (NIS) + :T Sí»ový informaèní systém (NIS) + !M_ORDER + :E Host name search path + :T Jak rozeznávat jména + !M_EXPORTS + :E Exported file systems (NFS) + :T Exportované souborové systémy (NFS) + !M_ISOL + :E Isolated/simple network from scratch + :T Izolovaná/jednoduchá sí» budovaná z nièeho + !T_CLIENTTASKS + :E Client tasks + :T Klienti + !T_SERVER + :E Server tasks + :T Servery + !T_BOOT + :E Boot services + :T Slu¾by pro bootování + !T_FIREWALL + :E Firewalling + :T Firewall + !T_NETWORK + :E Network configurator + :T Nastavení sítì + !I_NETWORK + :E This package allows you to configure a\n + +TCP/IP network from scratch using ethernet\n + +and modem (or other serial connection) + :T Tato obrazovka umo¾òuje nakonfigurovat\n + +sí« TCP/IP od zaèátku pomocí ethernetu\n + +a modemu (pøípadnì jiných sériových spojení) + !E_NETCONF + :E Netconf: Invalid arguments\n + :T Netconf: Neplatné parametry\n + !E_NETCONFDEF + :E `netconf' without an argument starts the interactive mode\n + :T `netconf' bez argumentù spustí interaktivní mód\n + !E_IVLRUNLEVEL + :E Invalid runlevel %s for network daemons\n + +Values 1,2,3,4,5,6 or local,client,server\n + +are valid.\n + :T Neplatná úroveò %s pro sí»ové démony\n + +Platné jsou hodnoty 1,2,3,4,5,6 nebo\n + +local, client a server.\n + !E_NISSERV + :E Unknown NIS server %s\n + :T Neznámý NIS server %s\n + !F_NISDOM + :E NIS domain + :T Doména NIS + !F_NISSERV + :E NIS server + :T Server NIS + !T_NISCONF + :E NIS client configuration + :T Nastavení NIS klienta + !I_NISCONF + :E You must enter the NIS domain\n + +A server must be specified\n + +if it can't be probed by a broadcast\n + +The server is either specified as an IP number\n + +or as a name.\n + :T Nutno zadat doménu NIS\n + +V pøípadì, ¾e server není mo¾né\n + +lokalizovat pomocí broadcastu, je nutné ho zadat ruènì.\n + +Server lze zadat buï IP adresou nebo jménem\n + !P_SETTINGNIS + :E Setting the NIS domain name + :T Nastavení domény NIS + !E_USAGEDOM + :E usage: domainname [ nisdomain ]\n + :T pou¾ití: domainname [ nisdoména ]\n + !F_ROUTEDREQ + :E routed is required + :T nutný démon routed + !F_NOEXPORT + :E Does not export any routes (Silent) + :T Neexportovat ¾ádné smìrování (Silent) + !F_EXPORTDEFRT + :E Export your default route + :T Exportovat implicitní smìrování + !T_ROUTEDCONF + :E Routed daemon configuration + :T Konfigurace routed démona + !I_ROUTEDCONF + :E Check the appropriate options\n + +unless you have a simple network, routed\n + +is required.\n + :T Ovìøte pøíslu¹né nastavení.\n + +Pokud va¹e sí» není jednoduchá, routed je nutný.\n + !E_CANTSILENT + :E Can't be both silent and a gateway\n + :T Nelze být najednou bránou i potichu\n + !E_IVLDEST + :E Invalid destination %s for line %d in file %s\n%s\n + :T Neplatný cíl %s na øádku %d v souboru %s\n%s\n + !E_NOKEYGW + :E Keyword gw missing from line %d of file %s\n%s + :T Klíèové slovo gw není na øádku %d souboru %s\n%s + !E_IVLGTW + :E Invalid gateway %s for line %d in file %s\n%s\n + :T Neplatná brána %s na øádku %d v souboru %s\n%s\n + !E_NETMASK + :E Keyword netmask expected, on line %d of file %s\n%s + :T Oèekáváno klíèové slovo netmask na øásku %d souboru %s\n%s + !E_IVLOUTPUT + :E Invalid content in /proc/net/route\n%s\n + :T Neplatný obsah /proc/net/route\n%s\n + !F_GATEWAY + :E Gateway + :T Brána + !F_DEST + :E Destination + :T Cíl + !T_ROUTESPEC + :E route specification + :T specifikace smìrování + !I_ROUTESPEC + :E Enter either IP number or name\n + :T Vlo¾te IP adresu nebo jméno\n + !I_SIMPLEINST + :E This option allows you to install\n + +a complete network setup, including the names\n + +of all machine.\n + +\n + +This will overwrite the following files:\n + + %s\n + + %s\n + :T Tato obrazovka umo¾òuje nainstalovat\n + +úplnì novou sí», vèetnì jmen poèítaèù.\n + +\n + +Budou pøepsány následující soubory:\n + + %s\n + + %s\n + !Q_SIMPLEINST + :E Installing network from scratch + :T Instaluji sí» od poèátku + !DUMMY_NAME_SERV + :E linux-serv + :T linux-serv + !DUMMY_NAME_BANANA + :E banana + :T banan + !DUMMY_NAME_APPLE + :E apple + :T jablko + !DUMMY_NAME_CHERRY + :E cherry + :T visenn + !DUMMY_NAME_ORANGE + :E orange + :T pomeranc + !DUMMY_NAME_WOLF + :E wolf + :T vlk + !DUMMY_NAME_LION + :E lion + :T lev + !DUMMY_NAME_MOUSE + :E mouse + :T mys + !DUMMY_NAME_EAGLE + :E eagle + :T orel + !DUMMY_NAME_COBRA + :E cobra + :T kobra + !DUMMY_NAME_ELVIS + :E elvis + :T karel + !DUMMY_NAME_BABE + :E babe + :T kocka + !DUMMY_NAME_ALNOLD + :E arnold + :T arnold + !DUMMY_NAME_ROCKY + :E rocky + :T rocky + !DUMMY_NAME_BOND + :E bond + :T basta + !DUMMY_NAME_RINGO + :E ringo + :T ringo + !DUMMY_NAME_PAUL + :E paul + :T paul + !DUMMY_NAME_JOHN + :E john + :T john + !DUMMY_NAME_GEORGE + :E george + :T george + !DUMMY_NAME_MADONA + :E madona + :T madonna + !DUMMY_NAME_TARZAN + :E tarzan + :T tarzan + !DUMMY_NAME_LINUS + :E linus + :T linus + !DUMMY_NAME_CANADA + :E canada + :T kanada + !DUMMY_NAME_USA + :E usa + :T cesko + !DUMMY_NAME_FINLAND + :E finland + :T finsko + !DUMMY_NAME_FRANCE + :E france + :T morava + !T_YOURMACHINE + :E Your machine name + :T Jméno va¹eho poèítaèe + !I_YOURMACHINE + :E You must select a name for your machine\n + +out of this list. Each of your co-networker\n + +must select a different name\n + :T Nutno zvolit jméno pro tento poèítaè\n + +z následujícího seznamu. Ka¾dý poèítaè v síti\n + +musí zvolit jiné jméno\n + !M_ACTIVATE + :E Activate the changes + :T Aktivovat zmìny + !M_PREVIEW + :E Preview what has to be done + :T Zobrazit, co je nutné vykonat + !T_STATUS + :E Status of the system + :T Stav systému + !I_STATUS + :E The state of the system is not\n + +in sync with the current/updated\n + +configuration. You are allowed to\n + +make it current, or continue with\n + +the current configuration. You can also\n + +look at the things that will have to be done\n + +to make the system current.\n + :T Stav systému není synchronizován\n + +s aktuální/zmìnìnou konfigurací\n + +Mù¾ete obnovit konfiguraci nebo\n + +ponechat stávající. Také si lze\n + +prohlédnout èinnosti, které je\n + +potøeba vykonat pro synchronizaci stavu.\n + !T_THINGSTODO + :E Things to do + :T Co je potøeba udìlat + !X_WOULDHAVE + :E Would have %s %s\n + :T Byl by %s %s\n + !X_STOPPED + :E stopped + :T zastaven + !E_IVLBASIC + :E Invalid basic configuration of the host\n%s\n + :T Neplatná základní konfigurace poèítaèe\n%s\n + !E_NOPRIMNAME + :E No definition for the primary name\n + +in /etc/hosts.\n + +There is no entry with the name or alias\n + +\"loghost\".\n + :T Chybí definice primárního jména\n + +v /etc/hosts.\n + +Polo¾ka s jménem nebo aliasem pro\n + +\"loghost\" chybí.\n + !P_SETHOSTNAME + :E Setting the hostname + :T Nastavení jména poèítaèe + !X_SETHOSTNAME + :E Setting hostname to %s\n + :T Nastavení jména poèítaèe na %s\n + !E_CANTSETHOST + :E Can't set the host name to %s\n(%s)\n + :T Nelze nastavit jméno poèítaèe na %s\n(%s)\n + !E_NOTKNOWN + :E %s is not known\n + :T %s neznámý\n + !E_HOSTUSAGE + :E usage: hostname [-f] [ host name ]\n + + hostname -d\n + + hostname --domain\n + :T pou¾ití: hostname [-f] [ host name ]\n + + hostname -d\n + + hostname --domain\n + !X_STARTED + :E started + :T spu¹tìn + !E_DNSDOMUSAGE + :E usage: dnsdomainname\n(No argument)\n + :T pou¾ití: dnsdomainname\n(Bez argumentù)\n + !E_UNKHOST + :E Unknown host name + :T Neznáme jméno poèítaèe + !E_NOALIAS + :E No kernel support for devices aliasing + :T Kernel nepodporuje aliasy pro zaøízení + !E_SETALIAS + :E Invalid alias setup for device %s\n%s + :T Neplatné nastavení aliasù pro zaøízení %s\n%s + !M_ALIAS + :E IP aliases for virtual hosts + :T IP aliasy pro virtuální poèítaèe + !F_IPALIASES + :E IP alias or range + :T IP alias nebo rozmezí + !T_IPALIASFORDEV + :E IP aliases for device %s + :T IP aliasy pro zaøízení %s + !I_IPALIASFORDEV + :E You can enter alternative IP numbers for a\n + +network interface. You can enter several numbers\n + +per lines. Many time savers syntax are supported\nH + +Here are some examples for:\n + + 192.168.1.10 192.168.1.11 192.168.1.12\n + + 192.168.1.10-12\n + + 10-12 + :T Lze nastavit alternativní IP adresy\n + +pro sí»ové rozhraní. Mù¾ete zadat nìkolik adres\n + +na jedné øádce. Je k dispozici nìkolik zkratek.\n + +Napøíklad:\n + + 192.168.1.10 192.168.1.11 192.168.1.12\n + + 192.168.1.10-12\n + + 10-12 + !T_IPALIASES + :E Edit IP aliases configurations + :T Upravit konfiguraci IP aliasù + !I_SYSTEMS + :E Each network device may have several\n + +IP number. Alternate ones are called alias and are\n + +entered here.\n + :T Ka¾dé sí»ové zaøízení mù¾e mít nìkolik IP adres.\n + +Alternativní adresy se nazývají aliasy a nastavují\n + +se tady.\n + !P_UPDALIAS + :E to update IP aliases + :T obnovit IP aliasy + !F_DAEPATH + :E path of the command + :T cesta k pøíkazu + !T_DAECONFIG + :E Daemons and command config + :T Konfigurace démonù a pøíkazù + !I_DAECONFIG + :E You are allowed to changed the way\na daemon or command is invoked. + :T Zde lze zmìnit zpùsob\njak jsou spou¹tìné pøíkazy a démoni. + !F_DAEARGS + :E arguments + :T argumenty + !E_IPXFORMAT + :E Invalid format of file %s\nCan't manage IPX properly\n + :T Neplatný formát souboru %s\nNelze spravovat IPX\n + !F_IPXNETNUM + :E Network number(0=probe) (hex) + :T Èíslo sítì (0=automaticky) (hex) + !F_IPXINTERNALNETNUM + :E Internal network number(opt) + :T Èíslo interní sítì (nepov) + !F_IPXINTERNALNODENUM + :E Internal node number(opt) + :T Interní èíslo uzlu (nepov) + !F_IPXAUTOCONFIG + :E Autoconfigure + :T Automatická konfigurace + !F_PRIMARY + :E primary + :T Primární + !F_ISPRIMARY + :E is the primary interface + :T je primární rozhraní + !T_IPXCONF + :E IPX interface configuration + :T Konfigurace IPX rozhraní + !I_IPXCONF + :E You must associate a frame type with\n + +a network devices and a network number\n + +For one device, it is possible to have several\n + +combination of frame and network number.\n + +Most linux client machine (IPX client) will be happy\n + +by selecting the \"autoconfigure\" choices. + :T Musíte asociovat typ rámce a èíslo sítì se sí»ovým\n + +zaøízením. Lze zadat nìkolik kombinací rámce\n + +a èísla sítì pro jedno zaøízení. Vìt¹ina\n + +linuxových klientù bude spokojena s nastavením\n + +\"autoconfigure\". + !M_IPXCONF + :E IPX interface setup + :T Nastavení rozhraní IPX + !F_FRAMETYPES + :E interfaces frame types + :T typ rámce pro rozhraní + !F_FRAMETYPE + :E Frame type + :T Typ rámce + !T_IPXINTERNAL + :E Internal net + :T Interní sí» + !F_IPXENABLE + :E Enable + :T Povolit + !F_IPXNETWORK + :E IPX networking + :T IPX sí» + !E_IPXSOCKET + :E Can't open IPX control socket\n + +Looks ODD to me.\n + +Maybe linuxconf is incompatible with the kernel release + :T Nelze otevøít ovládací socket IPX\n + +Mo¾ná Linuxconf není kompatibilní s tímto kernelem + !F_NETWORKHOST + :E network or host + :T Sí» nebo poèítaè + !F_NETMASKOPT + :E netmask(opt) + :T Maska sítì (nepov) + !F_EMPTYSLOT + :E Select [Add] to add empty slots at the end of the dialog + :T Pomocí [Pøidej] lze pøidat prázdnou polo¾ku + !T_HTMLACCESS + :E Linuxconf html access control + :T Nastavení pro pøístup do Linuxconfu pøes HTML + !I_HTMLACCESS + :E You can specify which networks or hosts are allowed\n + +to access linuxconf to configure your computer\n + +(They need a password still)\n + :T Lze zadat, které sítì nebo poèítaèe mohou\n + +pøistupovat k Linuxconfu a nastavovat tento poèítaèi\n + +(Ale stejnì potøebují heslo)\n + !M_HTMLACCES + :E Linuxconf network access + :T Sí»ový pøístup k Linuxconfu + !E_IVLDHOSTNET + :E invalid host or network: %s\n + :T Neplatný poèítaè nebo sí»: %s\n + !E_IVLDMASK + :E invalid netmask: %s\n + :T Neplatná sí»ová maska: %s\n + !F_LOCALMODE + :E No network + :T Není sí» + !F_CLIENTMODE + :E Client mode + :T Klientský mód + !F_SERVERMODE + :E Server + :T Server mód + !T_NETRUNLEVEL + :E Network operation mode + :T Operaèní mód sítì + !I_NETRUNLEVEL + :E + :T + !E_NETRUNLEVEL + :E Change network operation mode + :T Zmìna operaèního módu sítì + !E_IPNOMATCH + :E IP %s do not match %s/%s + :T IP %s nesouhlasí s %s/%s + !T_MAINACCESS + :E 0-May use linuxconf + :T 0-Mù¾e pou¾ívat linuxconf + !T_PSYSCONTROL + :E 0-General system control + :E 0-Obecné ovládání systému + !P_MAINACCESS + :E access linuxconf + :T Pøístup k Linuxconfu + !F_BCAST + :E Broadcast (opt) + :T Broadcast (nepov) + !E_NETMASKNEEDED + :E A netmask is needed for interface %s\n + +because you have supplied a network number + :T Sí»ová maska je potøebná pro rozhraní %s,\n + +proto¾e jste zadal èíslo sítì + !E_IVLIPINTER + :E Invalid IP configuration for interface %s\n + +IP address\t%s\t%s\n + +Net address\t%s\t%s\n + +Netmask\t%s\t%s\n + +Broadcast\t%s\t%s\n + :T Neplatná konfigurace IP pro rozhraní %s\n + +adresa IP\t%s\t%s\n + +Sí»ová adresa\t%s\t%s\n + +Sí»ová maska\t%s\t%s\n + +Broadcast\t%s\t%s\n + !E_TOOLONG + :E The command takes more than %d seconds to execute, odd\n + :T Vykonání pøíkazu trvá více neì %s sekund, divné\n + !F_MANAGED + :E Managed + :T Spravován + !I_MANAGED + :E Linuxconf may operate it + :T Linuxconf umí ovládat + !F_SKIP + :E Skip + :T Vynechat + !F_ABORT + :E Abort + :T Pøeru¹it + !I_ABORT + :E this session + :T toto sezení + !I_KILLCMD + :E this command + :T tento pøíkaz + !I_CMDTIMEOUT + :E The command\n + +\n + +%s\n + +\n + +is taking longer than expected to complete\n + +Please take action + :T Pøíkaz\n + +\n + +%s\n + +\n + +trvá déle ne¾ se èekalo\n + +Prosím, rozhodnìte + !T_CMDTIMEOUT + :E Too long + :T Pøíli¹ dlouho + !I_SKIP + :E this command + :T tento pøíkaz + !F_KILLCMD + :E Kill + :T Ukonèit + !E_KILLED + :E killed by operator + :T Ukonèen operátorem + !B_CONFIG + :E Config + :T Konfigurace + !S_CROND + :E Cron daemon + :T Démon cron + !S_MOUNTALL + :E Mounting local volumes + :T Pøipojení lokálních svazkù + !S_FIXPERM + :E Checking files permissions + :T Ovìøení práv k souborùm + !S_LOOPBACK + :E Setting network loopback + :T Nastavuji sí» loopback + !S_PORTMAP + :E Starting the RPC portmapper + :T Spou¹tìní RPC protmapper + !S_INETD + :E Starting inetd + :T Spou¹tení inetd + !S_LILO + :E Checking LILO + :T Ovìøování LILO + !S_ALIASLOOP + :E Setting IP aliases on network loopback + :T Nastavení IP aliasy na sí» loopback + !S_RETURN + :E return %d\n + :T vráceno %d\n + !S_SECTBASE + :E Checking base configuration + :T Testování základní konfigurace + !S_KMODULES + :E Checking kernel's modules + :T Testování modulù kernelu + !S_SYSLOG + :E Starting system loggers + :T Spou¹tìní programù pro záznam systémových zpráv + !S_PRTSPOOL + :E Starting printer spooler + :T Spou¹tìní správce tisku + !S_SECTCLIENT + :E Setting client networking + :T Nastavování sítì pro klientské pou¾ití + !S_IPDEVICES + :E Configure network IP devices + :T Konfigurace sí»voých zaøízení pro IP + !S_IPXDEVICES + :E Configure network IPX devices + :T Konfigurace sí»ových zaøízení pro IPX + !S_IPROUTES + :E Configure IP routes + :T Konfigurace smìrování IP + !S_ROUTEDS + :E Start routing daemons + :T Spou¹tìní smìrovacích démonù + !S_NIS + :E Starting NIS + :T Spou¹tìní NIS + !S_AMD + :E Starting automounter + :T Spous¹tìní automounter démona + !S_SECTSERVER + :E Setting server networking + :T Nastavování sítì pro server + !S_ALIAS + :E Setting IP aliases on net devices + :T Nastavování IP aliasù pro sí»ová zaøízení + !S_NFS + :E Starting NFS service + :T Spou¹tìní slu¾by NFS + !S_UNSETSERVER + :E Unsetting server networking + :T Vypínání sítì pro server + !S_STOPNFS + :E Stopping NFS service + :T Vypínání slu¾by NFS + !S_UNSETCLIENT + :E Unsetting networking + :T Vypínání sítì + !S_KSENDMAIL + :E Stopping sendmail + :T Vypínání sendmailu + !S_KROUTEDS + :E Stopping routing daemons + :T Vypínání smìrovacích démonù + !S_KAMD + :E Stopping automounter + :T Vypínání démona automounter + !S_MOUNTNET + :E Mounting network volumes + :T Pøipojování sí»ových svazkù + !T_CONFIGLOG + :E Configuration log + :T Záznam o konfiguraci + !I_CONFIGLOG + :E These logs shows all configuration commands\nissued by linuxconf + :T Tyto záznamy ukazují v¹echny konfigura¹ní pøíkazy\nspou¹tìné Linuxconfem + !E_LEFTBG + :E Left running in the background + :T Ponechán bì¾et na pozadí + !Q_SEELOGS + :E Some errors were reported\nDo you want to examine the logs + :T Byly nahlá¹eny chyby\nChcete si prohlédnout záznamy + !Q_SOMEERRORS + :E There were some errors + :T Vyskytly se chyby + !I_PREBOOT + :E Tasks before booting + :T Úkoly vykonané pøe bootováním + !I_BOOTING + :E Booting + :T Bootování + !I_FIXPERM + :E Fixperm session + :T Oprava práv + !I_UPDATE + :E Activating changes + :T Aktivace zmìn + !I_RUNLEVEL + :E Switching runlevel + :T Pøepnutí úrovnì + !I_PPPPOSTCON + :E PPP postconnect commands + :T pøíkazy po pøipojení PPP + !E_PIDFILE + :E Invalid PID file: %s + :T Neplatný soubor PID: %s + !I_LOGACCESS + :E in %s + :T v %s + !F_LOGACCESS + :E Log access + :T Zaznamenávat pøístup + !E_DAEUNKNOWN + :E Unknown command or daemon %s + :T Neznámý pøíkaz nebo démon %s + !I_MISSCMPN + :E Linuxconf can't locate the command %s\n + +on your system.\n + +\n + +The command is either missing (not installed)\n + +or installed with a different name or path\n + +\n + +Do you want to change the configuration for this command ? + :T Linuxconf nemù¾e najít program %s\n + +\n + +Tento program buï chybí (není nainstalován)\n + +nebo je nainstalován s jiným jménem nebo cestou\n + +\n + +Chcete zmìnit konfiguraci pro tento program ? + !Q_MISSCMPN + :E Missing component ? + :T Chybìjící souèást? + !F_PKGNAME + :E Package's name + :T Název balíku + !F_PKGSTART + :E Start command + :T Startovací pøíkaz + !F_PKGSTOP + :E Stop command + :T Vypínací pøíkaz + !F_PKGRELOAD + :E Reload command + :T Pøíkaz pro znovuspu¹tìní + !F_PKGMODULE + :E Module name or path + :T Název modulu nebo cesta + !F_PIDFILE + :E PID files + :T Soubory PID + !T_ACTIVATION + :E Activation control + :T Ovládání aktivace + !F_STARTAFTER + :E Start after package + :T Spustit po balíku + !F_STARTLEVEL + :E Start at runlevel + :T Spustit v úrovních + !F_LOCAL + :E No networking + :T Bez sítì + !F_CLIENT + :E Client networking + :T Klientská sí» + !F_SERVER + :E Server networking + :T Sí» pro server + !F_PKGCONFIG + :E Config files + :T Konfiguraèní soubory + !F_PKGCOMMENTS + :E Comments + :T Komentáø + !T_DROPCONF + :E Dropin configuration + :T Konfigurace pøívì¹kù + !I_DROPCONF + :E You can control how Linuxconf will manage\n + +a given package, when it will start, stop, and reload/restart\n + +and how and why\n + :T Zde lze nastavit, jak bude Linuxconf spravovat daný balík,\n + +kdy se má spou¹tìt, vypínat, znovustartovat, jak a kdy.\n + !F_STOPLEVEL + :E Stop at runlevel + :T Vypnout v úrovních + !F_PKGDESC + :E Package's description + :T Popis balíku + !I_ADDDROPIN + :E Select [Add] to add a new dropin definition + :T Pomocí [Pøidej] lze pøidat definici pøíve¹ku + !T_DROPINMNG + :E Dropin management + :T Správa pøívì¹kù + !I_DROPINMNG + :E You are allowed to modify, delete and\n + +add new dropins. Dropins provide information\n + +letting information control and manage add-on package + :T Zde lze modifikovat, mazat a pøidávat nové pøívì¹ky.\n + +Pøíve¹ky poskytují informace o ovládání\n + +a spravování pøídavných balíkù. + !F_PROCNAME + :E Process names + :T Jména procesù + !T_STARTSYS + :E Starting %s + :T Startuji %s + !T_STOPSYS + :E Stopping %s + :T Zastavuji %s + !F_NORELOAD + :E No reload/restart needed + :T Znovuspu¹tìní není nutné + !F_REVISION + :E Dropin revision + :T Revize pøívì¹ku + !E_CMDMISS + :E Command %s missing\n + :T Pøíkaz %s chybí\n + !F_DONTSTOP + :E Never stop + :T Nikdy nevypínat + !F_READWRITE + :E May write + :T Mù¾e zapisovat + !F_ROOTSQUASH + :E Root privileges + :T Privilégia jako root + !F_LINKREL + :E translate symbolic links + :T Pøeklad symbolických linkù + !T_ACTNEW + :E Activate new service + :T Aktivovat novou slu¾bu + !I_ACTNEW + :E The service %s has been added to your system\n + + (%s)\n + +Do you want to enable it ? + :T Slu¾ba %s byla pøidána do systému\n + + (%s)\n + +Chcete ji povolit? + !O_ENABLED + :E Enabled + :T Povoleno + !O_TMPDIS + :E Temp-disabled + :T Doèasnì zakázáno + !O_DISABLED + :E Disabled + :T Zakázáno + !T_SERVICECTL + :E Service control + :T Ovládání slu¾eb + !I_SERVICECTL + :E You can selectivly enable or disable\n + +any services. You can disable services on a permanent\n + +basis or on a temporary basis. Temporary means that\n + +Linuxconf will remind you about those and will reactive\n + +them at the next reboot. + :T Lze selektivnì povolit nebo zakázat jakoukoli slu¾bu.\n + +Slu¾bu lze zakázat nastálo nebo jen doèasnì.\n + +Doèasnì znamená, ¾e Linuxconf bude toto zakázání\n + +pøipomínat a pøi dal¹ím spu¹tìní systému ji opìt aktivuje. + !I_REENABLE + :E Re-enabling service %s\n + :T Povoluji slu¾bu %s\n + !P_DELDROP + :E to delete a dropin + :T Smazat pøívì¹ek + !T_ROUTEALT + :E Route to alternate local networks + :T Smìrování do ostatních lokálních sítí + !M_ROUTEALT + :E routes to alternate local nets + :T smìrování do ostatních lokálních sítí + !I_PPPDIALD + :E PPP diald setup commands + :T pøíkazy pro nastavení PPP diald + !T_ADAPTOR + :E Adaptor + :T Adaptér + !F_CONFIG + :E Config + :T Konfigurace + !T_HOSTHEAD + :E IP number\tname & aliases + :T IP adresa\tjméno a aliasy + !H_SERVICEMODE + :E Enabled\tTemp-disabled\tDisabled + :T Povolen\tDoèasnì zakázán\tZakázán + !T_NETMISC + :E Misc + :T Rùzné + !T_CROND + :E Scheduled tasks daemon + :T Démon pro plánování úkolù + !T_ALIASES + :E IP aliases + :T Aliasy IP + !T_PORTMAP + :E Port mapper + :T Mapovaè portù + !T_INETD + :E Inetd server + :T Inetd + !T_SYSLOG + :E system logger + :T démon pro zaznamenávání systémových zpráv + !T_KLOGD + :E Kernel logger + :T démon pro zaznamenávání zpráv kernelu + !T_LPD + :E Printer spooler + :T Správce tisku + !T_ROUTED + :E Routed dynamic router + :T Dynamické smìrování Routed + !T_GATED + :E Gated dynamic router + :T Dynamické smìrování Gated + !T_YPBIND + :E NIS client + :T Klient pro NIS + !T_AMD + :E Auto-mounter + :T Auto-mounter + !T_NFS + :E NFS server + :T Server NFS + !T_RARP + :E RARP service + :T Slu¾ba RARP + !T_FIREWALLING + :E Firewalling + :T Firewall + !T_KERNELD + :E Kernel's modules manager + :T Mana¾ér modulov kernelu + !H_EXPORTS + :E Directory\tHost\tMore + :T Adresáø\tPoèítaè\tVíce + !T_NETWORKING + :E NETWORKING + :T SÍ« + !H_ROUTENET + :E Network\tNetmask\tGateway + :T Sí»\tMaska\tBrána + !H_ROUTEHOST + :E Host\tGateway + :T Poèítaè\tBrána + !H_ROUTEALT + :E Network\tNetmask\tInterface + :T Sí»\tMaska\tRozhraní + !E_OK + :E Ok + :T OK + !E_INV + :E Invalid + :T Neplatné + !F_NETDEV + :E Net device + :T Sí»ové zaøízení + !F_MODULE + :E Kernel module + :T Modul kernelu + !F_MODIO + :E I/O port (opt) + :T I/O port (nepov) + !F_MODIRQ + :E Irq (opt) + :T Pøeru¹ení (nepov) + !F_ARCNET + :E Arcnet adaptor + :T Sí»ový adaptér pro Arcnet + !F_ATPNET + :E Pocket adaptor + :T Pøenosný sí»ový adaptér + !F_FIRSTTKR + :E First Token ring adaptor + :T První sí»ový adaptér pro Token Ring + !F_FIRSTDUM + :E First dummy device + :T První hloupé zaøízení + !I_CLASS_A + :E Class A network + :T Sí» tøídy A + !I_CLASS_B + :E Class B network + :T Sí» tøídy B + !I_CLASS_C + :E Class C network + :T Sí» tøídy C + !I_SUBNET128 + :E 25 bits sub-network + :T Podsí» 25 bitù + !I_SUBNET192 + :E 26 bits sub-network + :T Podsí» 26 bitù + !I_SUBNET224 + :E 27 bits sub-network + :T Podsí» 27 bitù + !I_SUBNET240 + :E 28 bits sub-network + :T Podsí» 28 bitù + !I_SUBNET248 + :E 29 bits sub-network + :T Podsí» 29 bitù + !E_RANGESYN + :E Invalid range syntax + :T Neplatná syntax rozmezí + !T_EXECSYSV + :E Executing some Sysv init scripts + :T Spou¹tení nìkterých inicializaèných skriptù stylu SysV + !T_LATEOUTPUT + :E Grabbing some late messages from command %s\n + :T Zachycení nìkterých pozdních zpráv od pøíkazu %s\n + !F_SECURE + :E Request access from secure port + :T Po¾adovat pøístup ze zabezpeèeného portu + !F_BOOTCMD + :E Boot time cleanup + :T Úklid po startu + !T_BOOTDROPIN + :E Dropin's boot time commands\n + :T Pøíkazy pøívì¹kù pro start systému\n + !M_DONTQUIT + :E Don't quit + :T Nekonèit + !E_SETETH0DEF + :E netconf --setdevdef can only be used by root\n + :T netconf --setdevdef mù¾e pou¾ívat jedinì root\n + !E_SETGATEWAY + :E netconf --setgateway can only be used by root\n + :T netconf --setgateway mù¾e pou¾ívat jedinì root\n + !E_SETCLOCKMODE + :E netconf --setclockmode can only be used by root\n + :T netconf --setclockmode mù¾e pou¾ívat jedinì root\n + !I_NEWMAXALIASES + :E Raising kernel max aliases per device limit to %d\n + :T Zvy¹uji maximální poèet aliasù pro jedno zaøízení na %d (kernel)\n + !E_TOOALIASES + :E Too many IP aliases, maximum %d + :T Pøíli¹ mnoho IP aliasù, maximálnì povoleno %d + !I_RESETFORNEW + :E Unsetting aliases to grow the kernel table from %d to %d entries\n + :T Ru¹ení aliasy pro zvìt¹ní poètu polo¾ek tabulky kernelu z %d na %d\n + !E_BOOTRC + :E netconf --bootrc path [ path ] + :T netconf --bootrc cesta [ cesta ] + !F_MODINST + :E (inst) + :T (inst) + !E_DRPNOMODPATH + :E Module %s not found for dropin %s + :T Nenalezen modul %s pro pøívì¹ek %s + !I_ARCHIVE + :E Configuration archiving + :T Archivace konfigurace + !M_NFSSERV + :E NFS server + :T Sever pro NFS + !I_EXTRACT + :E Configuration extraction + :T Získání konfigurace z archivu + !I_SWITCHCONF + :E Switching configuration + :T Pøepínám konfiguraci + !N_FILEFUTURE + :E The file %s as a revision date in the future\n + +This probably means that you system time is wrong\n + +or as been wrong at some point. + :T Soubor %s má datum revize v budoucnosti.\n + +To znamená, ¾e systémový èas je ¹patnì nastavený nebo\n + +byl ¹patnì nastavený. + !M_SERVICESACT + :E Services activity + :T Aktivita slu¾eb + !I_MANUAL + :E Manual + :T Ruènì + !I_DHCP + :E Dhcp + :T DHCP + !I_BOOTP + :E Bootp + :T BOOTP + !F_CONFMODE + :E Config mode + :T Konfiguraèní mód + !I_PCMCIA + :E PCMCIA device (removable) + :T Zaøízení PCMCIA (vyjmutelné) + !P_INITNET + :E Intialising the network + :T Inicializuji sí» + !I_PUBLISH + :E Publish an admin tree + :T Rozeslat administraèní strom + !I_IMPORT + :E Import an admin group + :T Importovat administraèní skupinu + !I_SETGATEWAY + :E Changing default gateway to %s\n + :T Zmìna implicitní brány na %s\n + !X_CONFIG + :E Config + :T Konfigurace + !I_KILLING + :E Killing + :T Ukonèuji + !E_MISSINGPRC + :E Some process missing, full restart of package %s required\n + :T Chybí nìkteré procesy, je nutný úplný restart balíku %s\n + !F_AUTORELOAD + :E Autoreloaded + :T Automaticky znovunata¾ení + !F_PKGPROBE + :E Probe command + :T Testovací pøíkaz + !I_CREATEUSER + :E Creating user account + :T Vytvoøení u¾ivatelského úètu + !I_DELETEUSER + :E Deleting user account + :T Mazání u¾ivatelského úètu + !I_ADAPACTIVE + :E Enabled + :T Povolen + !E_SERVICE + :E Unknown service %s\n + :T Neznámá slu¾ba %s\n + !I_ROUTERON + :E Enabling routing\n + :T Povoluji smìrování\n + !I_ROUTEROFF + :E Disabling routing\n + :T Zakazuji smìrování\n + !E_ROUTINGCTRL + :E Can't controlling routing with this kernel + :T Tento kernel nepodporuje ovládání smìrování + !F_DEFGTW + :E Default gateway + :T Implicitní brána + !T_DEFAULTS + :E Defaults + :T Implicitní + !I_ISROUTER + :E Enable routing + :T Povolit smìrování + !E_NOHOSTNAME + :E Host name not defined + :T Nedefinováno jméno poèítaèe + !E_TOOMSEARCH + :E Too many entries in search statement\nin file %s + :T Pøíli¹ mnoho polo¾ek v search polo¾ce\nv souboru %s + !E_IVLDLINE + :E Invalid line %d in %s + :T Neplatná øádka %d v %s + !E_TOOMANYSERVERS + :E Too many nameservers defined in %s\n + +maximum 3\n + +\n + +If you edit and save, you will loose some entries\n + +This is not only a limit of linuxconf\n + +but a limit of the system in general\n + +See \"man 5 resolver\" + :T Pøíli¹ mnoho nameserverù definovaných v %s\n + +maximální poèet je 3\n + +\n + +V pøípadì, ¾e upravíte a ulo¾íte nastavení, pøijdete o nìkteré záznamy\n + +Toto není jen omezení Linuxconfu,\n + +ale celého systému.\n + +Pozri \"man 5 resolver\" + !F_DNSNEEDED + :E DNS usage + :T Pou¾ití DNS + !M_DNSNEEDED + :E DNS is required for normal operation + :T DNS vy¾adována pro normální èinnost + !F_DEFDOM + :E default domain + :T Implicitní doména + !F_NAMESERV1 + :E nameserver 1 + :T Nameserver 1 + !F_NAMESERV2 + :E nameserver 2 (opt) + :T Nameserver 2 (nepov) + !F_NAMESERV3 + :E nameserver 3 (opt) + :T Nameserver 3 (nepov) + !F_SEARCHDOM + :E search domain %d (opt) + :T Prohledat doménu %d (nepov) + !T_RESOLVCONF + :E Resolver configuration + :T Konfigurace slu¾by resolver + !I_RESOLVCONF + :E You can specify which name server will be used\n + +to resolv host ip number. Using the DNS is\n + +to handle this on a TCP/IP network. The others\n + +are the local /etc/hosts file\n + + (see \"information about other hosts\" menu\n + +or the NIS system\n + :T Zde lze specifikovat, který name server se má pou¾ít\n + +pro pøevod jména poèítaèe na IP adresu. DNS toto umo¾òuje\n + +pomocí sítì TCP/IP. Dal¹í mo¾nosti jsou lokální soubor\n + +/etc/hosts (blí¾e nabídka \"informace o jiných poèítaèích\")\n + +nebo systém NIS\n + !I_CHGDOMRES + :E Changing resolver domain to %s\n + :T Zmìna domény pro resolver na %s\n + !I_CHGSERVER + :E Changing DNS server to %s\n + :T Zmìna DNS serveru na %s\n + !I_CHGSEARCH + :E Changing DNS search to %s\n + :T Zmìna vyhledávání v DNS na %s\n + !I_UPDATING + :E Updating %s\n + :T Obnovuji %s\n + !F_MULTI + :E Multiple IPs for one host + :T Více IP adres pro jeden poèítaè + !T_NAMESERV + :E Name service access + :T Pøístup k pojmenovávací slu¾bì + !I_NAMESERV + :E You must tell the system in which order\n + +the various name services must be probed\n + +\n + +hosts mean /etc/hosts is probed\n + +NIS stand for Network Information System\n + +dns stands for Domain Name Service\n + :T Nutno zadat, v jakém poøadí má systém\n + +zkou¹et rùzné pojmenovávací slu¾by\n + +\n + +hosts znamená vyzkou¹ení /etc/hosts\n + +NIS znamená Network Information System\n + +dns znamená Domain Name Service\n + !P_WRITEHOSTS + :E write /etc/host.conf + :T Zapsat /etc/host.conf + !E_IVLDIPDNS + :E Invalid IP number for nameserver %d\n + :T Neplatná IP adresa pro nameserver %d\n + !N_CHECKING + :E Checking dns connectivity + :T Testuji funkènost DNS + !N_NOTGOOD + :E Not good + :T ©patnì + !N_GOOD + :E Ok + :T OK + !E_DNSPROBLEM + :E The DNS does not answer within %d seconds\n + +This is bad and will cause major problems later\n + +Do you want to continue ?\n + +\n + +(Note that this may indicate one minor DNS problem\n + + please consult the help screen for further info) + :T DNS neodpovìdìl do %d sekund\n + +To pozdìji zpùsobí velké problémy.\n + +Chcete pokraèovat?\n + +\n + +(Poznámka: Mù¾e to znamenat jeden men¹í problém s DNS\n + + pøeètìte si prosím nápovìdu) + !E_DNSCONNECT + :E DNS connectivity + :T Pou¾ití DNS + !I_MODIFYUSER + :E Updating user account + :T Upravuji u¾ivatelský úèet + !H_NETDEV + :E Network device + :T Sí»ové zaøízení + !I_CHANGINGSERVICES + :E Turning services on and off + :T Vypínání a zapínání slu¾eb + !I_ENABLED + :E Enabled + :T Povoleno + !I_TMPDISABLED + :E Temp-disabled + :T Doèasnì zakázáno + !I_DISABLED + :E Disabled + :T Zakázáno + !I_SWITCHING + :E Switch service %s to %s\n + :T Pøepnout slu¾bu %s do %s\n + !H_SERVICEMODEENH + :E Enabled\tDisabled + :T Povolen\tZakázán + !E_NONETDEV + :E Missing network device + :T Chybí sí»ové za¾ízení + !E_IVLDDST + :E Invalid destination IP number + :T Neplatná cílová IP adresa + !E_IVLDGTW + :E Invalid gateway IP number + :T Neplatná IP adresa brány + !E_IVLDMSK + :E Invalid netmask + :T Neplatná sí»ová maska + !F_INTERFACE + :E Interface + :T Rozhraní + !F_HOSTNAME + :E Host name + :T Jméno poèítaèe + !F_ENABLEHTML + :E Enable network access + :T Povolit pøístup ze sítì + !E_ONLYROOT + :E Only root is allowed to do that + :T To mù¾e jedinì root + !I_USAGE + :E netconf command line options\n + +\n + + --bootrc rc_dir_path [ previous_rc_dir_path ]\n + + --connect site [--fore]\n + + --dialctl\n + + --disconnect site\n + + --initnet\n + + --postconnect linuxconf_dialout site ppp-device\n + + --postconnect linuxconf_dialin site ppp-device\n + + --predisconnect linuxconf_dialout site ppp-device\n + + --predisconnect linuxconf_dialin site ppp-device\n + + --resetfw\n + + --runlevel 0|1|2\n + + --runlevel local|client|server\n + + --S00linuxconf\n + + --S99linuxconf\n + + --setdevdef no_device name ip netmask device\n + + --setgateway ip\n + + --setupdiald site iface mask local remote metric\n + + --status\n + + --update\n + :T netconf pøepínaèe pøíkazové øádky\n + +\n + + --bootrc rc_dir_path [ previous_rc_dir_path ]\n + + --connect site [--fore]\n + + --dialctl\n + + --disconnect site\n + + --initnet\n + + --postconnect linuxconf_dialout site ppp-device\n + + --postconnect linuxconf_dialin site ppp-device\n + + --predisconnect linuxconf_dialout site ppp-device\n + + --predisconnect linuxconf_dialin site ppp-device\n + + --resetfw\n + + --runlevel 0|1|2\n + + --runlevel local|client|server\n + + --S00linuxconf\n + + --S99linuxconf\n + + --setdevdef no_device name ip netmask device\n + + --setgateway ip\n + + --setupdiald site iface mask local remote metric\n + + --status\n + + --update\n + !I_MISC + :E Miscellaneous task + :T Rùzné úkoly diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/pppdialin.dic linuxconf-1.15/messages/cz/pppdialin.dic *** linuxconf-1.14r4/messages/cz/pppdialin.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/pppdialin.dic Fri Mar 26 10:46:10 1999 *************** *** 0 **** --- 1,131 ---- + @version 0 + !T_MODIPUP + :E Modify ip-up/ip-down + :T Modifikovat ip-up/ip-down + !I_MODIPUP + :E The files /etc/ppp/ip-up and /etc/ppp/ip-down\n + +must be modified to support the pppdialin module\n + +\n + +The following lines must be added respectivly to\n + +each file:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Do you want to do it ? + :T Soubory /etc/ppp/ip-up a /etc/ppp/ip-down\n + +je nutno modifikovat, aby podporovaly pppdialin modul\n + +\n + +Neboli, je nutné pøidat do nich následující\n + +øádky:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Mají se soubory modifikovat? + !T_USAGE + :E Module pppdialin\n\n No command line option\n + :T Modul pppdialin\n\n ®ádné pøepínaèe pøíkazové øádky + !T_PPPPARMS + :E PPP parms + :T Parametry PPP + !F_COPYACCT + :E Copy from account + :T Zkopírovat z úètu + !F_ALLOCFROMTTY + :E Allocate remote IP from tty name + :T Alokovat vzdílenou IP z tty + !F_REMOTEIP + :E Remote IP number + :T Vzdálená IP adresa + !F_OPTIONS + :E other pppd options + :T jiné parametry pppd + !F_IDLETIME + :E Idle time + :T Doba neèinnosti + !F_MAXTIME + :E Maximum connect time + :T Maximální èas pøipojení + !E_IPFROMTTYORNOT + :E The IP number can't be allocated from the tty\nand assigned manually + :T IP adresa nemù¾e být alokována z tty\na zároveò zadaná ruènì + !I_PPPDIALIN + :E PPP dialing configs + :T Konfigurace pro PPP pøístup + !T_ROUTING + :E Routing + :T Smìøování + !F_NETWORK + :E Network + :T Sí» + !F_NETNASK + :E Netmask + :T Maska sítì + !E_IVLDIP + :E Invalid IP number: %s + :T Neplatná IP adresa: %s + !E_IVLDMSK + :E Invalid netmask + :T Neplatná maska sítì + !F_POSTCONCMD + :E Post connnect command + :T Pøíkaz vykonaný po pøipojení + !F_POSTDISCONCMD + :E Post disconnect command + :T Pøíkaz vykonaný po odpojení + !F_DELIVERMAIL + :E Deliver to this domain + :T Doruèování pro tuto doménu + !T_IPX + :E Ipx + :T IPX + !F_PPPIPXENABLE + :E Enable IPX over PPP + :T Povolit IPX pøes PPP + !F_PPPIPXNETNUM + :E Network number + :T Èíslo sítì + !F_PPPIPXLOCALNUM + :E Local node number + :T Èíslo lokáního uzlu + !F_PPPIPXREMOTENUM + :E Remote node number + :T Èíslo vzdáleného uzlu + !F_PPPIPXRIPSAP + :E Enable RIP and SAP routing + :T Povolit RIP a SAP smìrování + !F_PPPIPXNLSP + :E Enable NLSP routing + :T Povolit NLSP smìrování + !F_PPPIPXOPTIONS + :E Other ipx options + :T Ostatní parametry IPX + !M_DEFPPP + :E Default PPP paramaters + :T Implicitní PPP parametry + !I_PPP233 + :E Using pppd 2.3.3 + :T Pou¾ítí pppd 2.3.3 + !F_DNS1 + :E Primary dns + :T Primární DNS + !F_DNS2 + :E Secondary dns + :T Sekundární DNS + !T_DEFDIALIN + :E Default PPP dialin parameters + :T Implicitní parametry pro PPP pøístup + !I_DEFDIALIN + :E You control here the default PPP option.\n + +Those options apply to all PPP accounts\n + +unless overriden. + :T Zde se nastavují implicitní parametry PPP.\n + +Tyto parametry platí pro v¹echny PPP úèty\n + +pokud není uvedeno jinak. + !F_OURIP + :E Local IP number + :T Lokální IP adresa + !F_PROXYARP + :E Proxy Arp (fake remote on local net) + :T Proxy pro ARP (pøedstírat vzdálený poèítaè na lokální síti) diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/rarp.dic linuxconf-1.15/messages/cz/rarp.dic *** linuxconf-1.14r4/messages/cz/rarp.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/rarp.dic Fri Apr 9 12:54:34 1999 *************** *** 0 **** --- 1,72 ---- + @version 0 + !M_rarp + :E RARP service + :T Slu¾ba RARP + !T_USAGE + :E Module rarp\n\n No command line option\n + :T Modul rarp\n\n Nemá pøepínaèe pøíkazové øáadky\n + !E_IVLDRARPFORM + :E Invalid format in file %s, line %d + :T Nesprávný formát souboru %s, øádek %d + !E_ALLFIELD + :E All field must be filled + :T Nutno vyplnit v¹echny polo¾ky + !E_HARDETH + :E Invalid hardware ethernet address\n%s\nExpect xx:xx:xx:xx:xx:xx format + :T Neplatná harwarová ethernet adresa\n Oèekáván formát xx:xx:xx:xx:xx:xx + !F_RARPACTIVE + :E This record is active + :T Tento záznam je aktivní + !F_HOSTNAME + :E host name or IP number + :T Jméno poèítaèe nebo IP adresa + !F_ETHADR + :E Ethernet address + :T Ethernetová adresa + !T_ETH2IP + :E Ethernet to IP translation + :T Pøeklad ethernetové adresy na IP + !I_ETH2IP + :E Enter an IP number or a host name\n + +and its ethernet 6 hexadecimal digit\n + +address + :T Vlo¾te IP adresu nebo jméno poèítaèe\n + +a jeho ethernetovou adresu jako 6 hexadecimálních\n + +èísel + !H_RARPLIST + :E Host or IP\tMAC address\tActive\tComment + :T Poèítaè nebo IP\nMAC adresa\tAktivní\tKomentáø + !I_ANEWENTRY + :E Select [Add] to add a new entry + :T Pomocí [Pøidej] pøidáte nový záznam + !T_RARPCONF + :E RARP configuration + :T Konfigurace RARP + !I_RARPCONF + :E You are allowed to edit/add\n + +RARP (Reverse Address Resolution)\n + +which will allow other computer to get\n + +their IP number from this server\n + :T Zde mo¾no upravit/pøidat\n + +RARP (Reverse Address Resolution),\n + +který umo¾ní jiným poèítaèùm získat\n + +jejich IP adresu z tohoto serveru\n + !P_EDITRARP + :E to edit RARP configuration + :T Upravit konfiguraci RARP + !P_UPDRARP + :E to install RARP entry + :T Nainstalovat záznam RARP + !E_NORARP + :E This kernel does not support RARP\n + +I can't load the RARP table\n + +Some machines may fail to boot because of that + :T Vá¹ kernel nepodporuje RARP\n + +Nelze naèíst RARP tabulku\n + +Mù¾e to zpùsobit nefunkènost nìkterých poèítaèù + !F_COMMENT + :E Comment + :T Komentáø + !S_RARP + :E Setting RARP service + :T Nastavuji slu¾bu RARP diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/redhat.dic linuxconf-1.15/messages/cz/redhat.dic *** linuxconf-1.14r4/messages/cz/redhat.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/redhat.dic Fri Mar 26 10:49:47 1999 *************** *** 0 **** --- 1,45 ---- + @version 0 + !T_USAGE + :E redhat usage\n\nredhat --option ...\n + :T Pou¾ití redhat\n\nredhat --option ...\n + !I_REMOVING + :E Removing device configuration: %s\n + :T Odstaòuji konfiguraci zaøízení: %s\n + !T_AUTHENTICATE + :E Authentication + :T Ovìøení + !I_AUTHREQ + :E Authentication required\nfor user %s + :T Po¾adováno ovìøení\npro u¾ivatele %s + !T_NEWPASS + :E Changing password + :T Zmìna hesla + !I_NEWPASS + :E Changing the password for user %s + :T Zmìna hesla pro u¾ivatele %s + !I_DISABLED + :E The account was disabled\n + :T Úèet byl zablokován\n + !I_ENABLED + :E The account was enabled\n + :T Úèet byl povolen\n + !N_WRONGVERSION + :E You have installed a Linuxconf version suited for\n + +RedHat 4.x on a RedHat 5.x system.\n + +Things will operate normally, except for the following\n + +shortcomings:\n + + -PAM won't be used for user authentication and passwords\n + + updates.\n + + -Linuxconf will update the password database itself\n + + instead of relying on the useradd, userdel and usermod\n + + utilities.\n + +We suggest you install the proper version. You can \"upgrade\"\n + +by using the -U and --force rpm command line options. + :T Nainstaloval jste verzi Linuxconfu urèenou\n + +pro RedHat 4.x, pøièem¾ pou¾íváte RedHat 5.x.\n + +V¹e bude normálnì fungovat a¾ na:\n + + -PAM nebude pou¾ívaná pro ovìøení u¾ivatele a zmìny hesla\n + + -Linuxconf bude modifikovat databázi hesel bez\n + + pou¾ití utilit useradd, userdel a usermod\n + +Doporuèujeme nainstalovat správnou verzi Linuxconfu. Pøechod\n + +lze provést pomocí pøepínaèù -U a --force pøíkazu rpm. diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/redhatppp.dic linuxconf-1.15/messages/cz/redhatppp.dic *** linuxconf-1.14r4/messages/cz/redhatppp.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/redhatppp.dic Mon Mar 29 07:46:34 1999 *************** *** 0 **** --- 1,226 ---- + @version 0 + !M_DIALOUT + :E PPP/SLIP/PLIP + :T PPP/SLIP/PLIP + !I_ADDBYLNX + :E Added by linuxconf + :T Pøidáno Linuxconfem + !E_IVLDIP + :E Invalid IP address or netmask + :T Neplatná adresa IP nebo sí»ová maska + !P_CONTROLPTP + :E Control point to point link + :T Ovládání spojení point to point + !T_PPPINTER + :E PPP interface + :T PPP rozhraní + !T_SLIPINTER + :E SLIP interface + :T SLIP rozhraní + !T_PLIPINTER + :E PLIP interface + :T PLIP rozhraní + !F_MODEMPORT + :E Modem port + :T Port modemu + !T_HARDWARE + :E Hardware + :T Hardware + !I_HARDFLOWCTL + :E Use hardware flow control and modem lines + :T Pou¾ít hardwarové øízení toku a modemových linek + !I_ESCAPECHARS + :E Escape control characters + :T Ovládání pomocí Esc sekvencí + !I_DEFABORT + :E Abort connection on well-known errors + :T Zru¹it spojení pøi známých chybách + !I_USERCTL + :E Allow any user (de)activate the interface + :T Povolit ka¾dému u¾ivateli aktivaci/deaktivaci rozhraní + !F_LINESPEED + :E Line speed + :T Rychlost linky + !F_PPPOPTIONS + :E PPP options + :T Parametry PPP + !T_COMMS + :E Communication + :T Komunikace + !F_MODEMINIT + :E Modem init string + :T Inicializaèní øetìzec pro modem + !F_MODEMDIAL + :E Modem dial command + :T Pøíkaz pro vytáèení + !F_PHONE + :E Phone number + :T Telefonní èíslo + !I_DEBUGCON + :E Debug connection + :T Ladìní spojení + !T_CHAT + :E Chat + :T Rozhovor + !F_EXPECT + :E Expect + :T Oèekávat + !F_SEND + :E Send + :T Poslat + !T_NETWORKING + :E Networking + :T Práce se sítí + !I_ONBOOT + :E Activate interface at boot time + :T Aktivovat rozhraní pøi startu systému + !I_DEFROUTE + :E Set default route + :T Nastavit implicitní smìrování + !I_PERSIST + :E restart link when connection fails + :T restartovat pøi strátì spojení + !T_TIMEOUT + :E Timeout values in seconds + :T Èekací doba v sekundách + !F_NOCON + :E No connection + :T Bez spojení + !F_BROKENCON + :E Broken connection + :T Ztracené spojení + !T_MAXPACKET + :E Maximum package size + :T Maximální velikost paketu + !F_MRU + :E MRU (296-1500) + :T MRU (296-1500) + !F_MTU + :E MTU (296-1500) + :T MTU (296-1500) + !T_INFREQUENT + :E Infrequently-used options + :T Ménì pou¾ívané parametry + !F_LOCALIP + :E Local IP address + :T Lokální IP adresa + !F_REMOTEIP + :E Remote IP address + :T Vzdálená IP adresa + !F_NETMASK + :E Netmask + :T Sí»ová maska + !F_MODE + :E Mode + :T Mód + !T_PAP + :E PAP + :T PAP + !F_PAPNAME + :E Username + :T U¾ivatelské jméno + !F_SECRET + :E Secret + :T Heslo + !B_CONNECT + :E Connect + :T Pøipojit + !X_CONNECT + :E Connect + :T Pøipojit + !B_DISCONNECT + :E disconnect + :T Odpojit + !X_DISCONNECT + :E Disconnect + :T Odpojit + !E_MRU + :E Invalid MRU value + :T Neplatná hodnota MRU + !E_MTU + :E Invalid MTU value + :T Neplatná hodnota MTU + !E_DISCON + :E Invalid disconnect timeout value + :T Neplatná doba èekání pro odpojení + !E_SECRET + :E You must provide a secret password\nif you provide a PAP user name + :T Nutno zadat heslo\njesli¾e je zadáno u¾ivatelské jméno pro PAP + !I_USEPAP + :E Use PAP authentication + :T Pou¾ít ovìrìní pomocí PAP + !F_LOGIN + :E Login name + :T U¾ivatelské jméno + !F_PASSWORD + :E Password + :T Heslo + !B_CUSTOMIZE + :E Customize + :T Pøizpùsobit + !X_CUSTOMIZE + :E Customize + :T Pøizpùsobit + !R_PPP + :E PPP + :T PPP + !R_SLIP + :E SLIP + :T SLIP + !R_PLIP + :E PLIP + :T PLIP + !T_DEVTYPE + :E Type of interface + :T Typ rozhraní + !P_EDITDIALOUT + :E edit dialout configurations + :T úprava konfigurací pro volání + !T_CONFIGS + :E Configurations + :T Konfigurace + !T_PPPSLIPCONF + :E PPP/Slip/Plip configurations + :T Konfigurace PPP/SLIP/PLIP + !T_CONFIGSTATUS + :E Configuration\tStatus + :T Konfigurace\tStav + !I_CONNECTED + :E Connected + :T Pøipojen + !I_DIALING + :E Dialing + :T Vytáèí + !T_PPPCONCTRL + :E PPP/SLIP/PLIP connection control + :T Ovládání spojení PPP/SLIP/PLIP + !I_PPPCONCTRL + :E You are allowed to activate/deactivate\nPPP, SLIP and PLIP link\n + :T Mù¾ete aktivovat/deaktivovat\nPPP, SLIP a PLIP spojení\n + !P_CTLDIALOUT + :E control dialout + :T ovládání volání ven + !Q_DOCONN + :E Activate link + :T Aktivovat spojení + !I_DOCONN + :E Do you want to activate the network link ? + :T Chcete aktivovate sí»ové spojení? + !Q_DODISCONN + :E Terminate link + :T Odpojit spojení + !I_DODISCONN + :E Do you want to terminate the network link ? + :T Chcete odpojit sí»ové spojení? + !I_REMOVINGPTP + :E Removing point to point configuration: %s\n + :T Odstaòuji konfiguraci Point to point: %s\n + !M_dialout + :E PPP/SLIP/PLIP + :T PPP/SLIP/PLIP + !M_PPPCTRL + :E Control PPP/SLIP/PLIP links + :T Ovládání PPP/SLIP/PLIP spojení + !T_USAGE + :E Module redhatppp\n\n No command line option\n + :T Modul redhatppp\n\n ®ádné pøepínaèe pøíkazové øádky\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/samba.dic linuxconf-1.15/messages/cz/samba.dic *** linuxconf-1.14r4/messages/cz/samba.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/samba.dic Fri Apr 9 12:38:26 1999 *************** *** 0 **** --- 1,189 ---- + @version 0 + !M_SAMBA + :E Samba file server + :T Souborový server Samba + !T_PRIVISAMBA + :E Samba administration + :T Správa Samby + !T_SERVICES + :E 1-Services + :T 1-Slu¾by + !E_SMBCONF + :E Invalid smb.conf file + :T Neplatný soubor smb.conf + !F_SHARENAME + :E Share name + :T Jméno sdílení + !T_SHARE + :E Share setup + :T Nastavení sdílení + !I_SHARE + :E You are allowed to enter configurations\nfor one disk share\n + :T Zde je mo¾no zadat konfigurace pro jedno sdílení\n + !H_SHARES + :E Share name\tDescription + :T Jméno sdílení\tPopis + !I_NEWSHARE + :E Select [Add] to add a new disk share + :T Pomocí [Pøidej] lze pøidat nové sdílení diskù + !T_SHARES + :E Disk shares + :T Sdílení diskú + !I_SHARES + :E You can define multiple independant entry\npoints in your file server + :T Lze definovat více nezávislých vstupních\nbodù pro souborový server + !F_COMMENT + :E Comment/description + :T Komentáø/Popis + !F_PUBLIC + :E Public access + :T Není nutné heslo + !F_WRITABLE + :E Writable + :T Povolen zápis + !F_WRITELIST + :E Write list + :T Kdo mù¾e zapisovat + !M_DEFAULT + :E Defaults + :T Obecné + !M_HOMES + :E Default setup for users's home + :T Implicitní nastavení pro domovské adresáøe + !M_PRINTERS + :E Default setup for printers + :T Implicitní nastavení pro tiskárny + !T_SAMBA + :E Samba administration + !I_SAMBA + :E This menu allows to configure the Samba SMB file server + :T Tato obrazovka umo¾òuje konfigurovat Samba SMB server + !M_SHARES + :E Disk shares + :T Sdílení diskù + !F_PREEXEC + :E Setup command + :T Pøíkaz pro nastavení + !F_ROOTPREEXEC + :E Setup command (root) + :T Pøíkaz pro nastavení (root) + !F_POSTEXEC + :E Cleanup command + :T Pøíkaz pro úklid + !F_ROOTPOSTEXEC + :E Cleanup command (root) + :T Pøíkaz pro úklid (root) + !F_FORCEUSER + :E Force user + :T V¾dy vlastník + !F_FORCEGROUP + :E Force group + :T V¾dy skupina + !F_BROWSEABLE + :E Browsable + :T Viditelné + !F_GUESTACCOUNT + :E Guest account + :T Úèet pro hosta + !F_ENGRYPTPASS + :E Encrypted password required + :T Vy¾adovat ¹ifrované hesla + !F_PATH + :E Directory to export + :T Adresáø + !F_PASSSERVER + :E Password server + :T Server pro hesla + !F_PASSLEVEL + :E Password level + :T Úroveò pro rozli¹ení hesel + !F_PASSPROG + :E Passwd program + :T Program pro zmìnu hesla + !F_PREFMASTER + :E Preferred master + :T Preferovaný jako vedoucí + !F_OSLEVEL + :E OS level + :T Úroveò OS pro volbu vedoucího + !F_NULLPASSWORDS + :E Allow null passwords account + :T Povolit úèty bez hesel + !F_ENABLE + :E This share is enabled + :T Toto sdílení je povoleno + !F_INHERIT + :E Inherit settings from share + :T Odvodit nastavení od + !F_GUESTONLY + :E Guest access only + :T Pøístupné jen pro hosta + !F_ADMINUSERS + :E Admin users + :T Administrátoøi + !F_ALLOWHOSTS + :E Allow hosts + :T Povolit pøístup pro poèítaèe + !F_DENYHOSTS + :E Deny hosts + :T Zakázat pøístup pro poèítaèe + !F_DONTDESCEND + :E Don't descent + :T Ukazovat jako prázdné adresáøe + !F_GUESTACCOUNTSH + :E Guest account (this share) + :T Úèet hosta (pro toto sdílení) + !F_VALIDUSERS + :E Valid users + :T Povolit pro u¾ivatele + !F_IVLDUSERS + :E Invalid users + :T Zakázat pro u¾ivatele + !F_MAGICSCRIPT + :E Magic script + :T Magický skript + !F_MAGICOUTPUT + :E Magic output + :T Soubor s výstupem mag. skriptu + !F_MAXCONNECT + :E Max. connections + :T Max. poèet pøipojení + !F_USERLIST + :E User list + :T Seznam u¾ivatelú + !F_READLIST + :E Read only user list + :T Seznam u¾ivatelù jen pro ètení + !F_ONLYUSER + :E Only user may connect + :T Jen u¾ivatel ze seznamù + !F_DEADTIME + :E Dead time + :T Èas pro odpojení + !F_DBGLEVEL + :E Debug level + :T Úroveò ladìní + !F_DEFSERVICE + :E Default service + :T Implicitní sdílení + !F_DOMMASTER + :E Domain master + :T Vedoucí domény + !F_REMANNOUNCE + :E Remote announce + :T Vzdálené ohla¹ování + !F_LOADPRINTERS + :E Show all available printers + :T Ukazovat v¹echny tiskárny + !F_MSGCOMMAND + :E WinPopup command + :T Pøíkaz pro WinPopup + !F_SYNCPASS + :E Synchronise linux and SMB passwords + :T Sjednocovat Linuxová a SMB hesla + !F_WORKGROUP + :E Work group + :T Pracovní skupina + !F_SERVERDESC + :E Server description + :T Popis serveru diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/squid.dic linuxconf-1.15/messages/cz/squid.dic *** linuxconf-1.14r4/messages/cz/squid.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/squid.dic Fri Apr 9 12:41:18 1999 *************** *** 0 **** --- 1,49 ---- + @version 0 + !M_squid + :E Squid (http proxy + cache) + :T Squid (http proxy + cache) + !T_USAGE + :E Module squid\n\n No command line option\n + :T Modul squid\n\n ®ádné pøepínaèe pøíkazové øádky\n + !F_HTTPPORT + :E Http port + :T Http port + !F_CACHESIZE + :E Disk cache size (meg) + :T Velikost diskové cache (meg) + !F_CACHEMEM + :E Ram cache size (meg) + :T Velikost pamì»ové cache (meg) + !T_SQUIDDEF + :E Squid defaults + :T Obecné nastavení + !I_SQUIDDEF + :E You set here the basic operational parameters + :T Zde se nastavují základní parametry èinnosti + !M_DEFAULT + :E Defaults + :T Obecné nastavení + !M_ACL + :E Access control + :T Pøístupová práva + !T_SQUID + :E Squid administration + :T Administrace serveru Squid + !I_SQUID + :E This menu allows to configure the Squid proxy server + :T Tato obrazovka umo¾òuje nastavit Squid proxy server + !F_TRANSPAR + :E Enable transparent proxying + :T Povolit transparentní proxy + !F_ACCELPROXY + :E Accelarator mode + proxy + :T Akceleraèní mód + proxy + !F_REALHOST + :E Accelator for host + :T Akcelerovat poèítaè + !F_REALPORT + :E On port + :T Èíslo portu + !E_TRANSACCEL + :E Can't be both a transparent proxy\nand an accelerator + :T Nelze pracovat zároveò jako transparentní proxy i jako akcelerátor diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/status.dic linuxconf-1.15/messages/cz/status.dic *** linuxconf-1.14r4/messages/cz/status.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/status.dic Fri Mar 26 10:47:58 1999 *************** *** 0 **** --- 1,57 ---- + @version 0 + !M_status + :E Viewing system state + :T Zobrazení stavu systému + !M_REPORT + :E Prepare a report + :T Vytvoø report + !M_MEMORY + :E memory usage(RAM) + :T vyu¾ití pamìti(RAM) + !M_DISK + :E disk usage + :T vyu¾ití disku + !M_INTERFACE + :E network devices + :T sí»ová zaøízení + !I_STATUS + :E You can view the current state of your computer.\n + +You can't modidy anything from here. + :T Zde je mo¾né prohlí¾et aktuální stav poèítaèe.\n + +Odsud nelze nic modifikovat. + !T_USAGE + :E status usage\n\nstatus --option ...\n + :T Pou¾ití status\n\nstatus --option ...\n + !M_IPROUTING + :E IP routing table + :T smìrovací tabulka IP + !M_IPXROUTING + :E IPX routing table + :T smìrovací tabulka IPX + !E_CANTEXEC + :E Can't execute the command\n%s + :T Nelze spustit pøíkaz \n%s + !T_STATUS + :E System status + :T Stav systému + !M_SYSINFO + :E System information + :T Informace o systému + !M_PROCESSES + :E processes + :T procesy + !I_OUTPUT + :E Output of command + :T Výstup pøíkazu + !I_FILE + :E File + :T Soubor + !M_INTERRUPTS + :E interrupts mapping + :T mapování pøeru¹ení + !M_IOPORTS + :E I/O port mapping + :T mapování I/O portù + !E_NOTDONE + :E Not done yet! + :T Není implementováno! diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/suse.dic linuxconf-1.15/messages/cz/suse.dic *** linuxconf-1.14r4/messages/cz/suse.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/suse.dic Fri Mar 26 10:46:21 1999 *************** *** 0 **** --- 1,4 ---- + @version 0 + !T_USAGE + :E suse usage\n\nsuse --option ...\n + :T pou¾ití suse\n\nsuse --option ...\n \ No newline at end of file diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/treemenu.dic linuxconf-1.15/messages/cz/treemenu.dic *** linuxconf-1.14r4/messages/cz/treemenu.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/treemenu.dic Fri Mar 26 10:46:33 1999 *************** *** 0 **** --- 1,16 ---- + @version 0 + !T_USAGE + :E treemenu usage\n\ntreemenu --option ...\n + :T pou¾ití treemenu\n\ntreemnu --option ...\n + !B_QUIT + :E Quit + :T Konec + !B_ACTIVATE + :E Act/Changes + :T Aktivuj zmìny + !N_NOJOB + :E Nothing to do! + :T Není co! + !B_HELP + :E Help + :T Nápovìda diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/userconf.dic linuxconf-1.15/messages/cz/userconf.dic *** linuxconf-1.14r4/messages/cz/userconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/userconf.dic Fri Apr 9 13:08:14 1999 *************** *** 0 **** --- 1,825 ---- + @version 0 + !T_PSYSCONTROL + :E 0-General system control + :T 0-Obecné ovládání systému + !E_GROUPEXIST + :E Group already exist\n + :T Skupina u¾ existuje\n + !E_GROUPEXISTID + :E Group already exist (Group ID)\n + :T Skupina u¾ existuje (ID skupiny)\n + !E_UNKNOWNMEMBER + :E Unknown member user + :T Èlen je neznámý u¾ivatel + !F_GROUPNAME + :E Group name + :T Jméno skupiny + !F_GROUPID + :E Group ID + :T ID skupiny + !F_ALTMEM + :E Alternate members(opt) + :T Èlenové (nepov) + !T_GROUPSPEC + :E Group specification + :T Specifikace skupiny + !INTRO_GROUPSPEC + :E You must specify at least the name\n + :T Nutno uvést alespoò jméno\n + !P_GROUPDB + :E to maintain the group database + :T udr¾ovat databázi skupin + !T_GROUPS + :E User groups + :T U¾ivatelské skupiny + !I_GROUPS + :E You can edit, add, or delete groups + :T Mù¾ete upravovat, pøidávat nebo mazat skupiny + !I_TOADD + :E Select [Add] to add a new definition + :T Pomocí [Pøidej] se pøidá nová definice + !I_GROUPCREATE + :E The group %s does not exist on your\n + +system. It is needed to %s\n + +\n + +Do you want to create it ? (why not) + :T Skupina %s neexistuje.\n + +Je nutná pro %s\n + +\n + +Má se vytvoøit ? (proè ne) + !Q_GROUPCREATE + :E Mandatory group creation + :T Vytvoøení nutné skupiny + !P_PASSPOLICIES + :E set the password and account policies + :T nastavte heslo a pravidla úètu + !F_MINLEN + :E Minimum length + :T Minimální délka + !F_MINCHARS + :E Minimum amount of non alpha char + :T Minimální poèet znakù jiných ne¾ písmena + !T_PASSPOLICIES + :E Password/Account setting policies + :T Pravidla pro nastavování hesel/úètù + !I_PASSPOLICIES + :E You must enter here the validation rules\n + +for password. Once setup, a user (or you) won't\n + +be able to change a password to one that does not\n + +fullfill this requirements\n + :T Zde se zadávají pravidla pro ovìrìní slo¾ení\n + +hesel. U¾ivatel musí zadat heslo,\n + +které bude tyto pravidla splòovat\n + !E_NOROOT + :E No root user in /etc/passwd\nBetter to let you in + :T V /etc/passwd není u¾ivatel root\nPøístup povolen + !T_PASSREQ + :E Password required + :T Nutné heslo + !I_ENTERPASS + :E Enter password for root\n + +Only the superuser is allowed to perform\n + +configuration task. + :T Vlo¾te heslo pro roota\n + +Jedinì root mù¾e mìnit\n + +tato nastavení. + !E_IVLDPASS + :E Invalid password + :T Nesprávné heslo + !E_MUSTBEROOT + :E You must be root to\n%s + :T Musíte být root pro\n%s + !E_DUPLOGIN + :E User %s already exist (same login name)\n + :T U¾ivatel %s u¾ existuje (stejné jméno)\n + !E_DUPID + :E User already exist (User ID)\n + :T U¾ivatel u¾ existuje (U¾ivatelské ID)\n + !E_UNKNOWNGRP + :E Group do not exist\n + :T Skupina neexistuje\n + !E_IVLDSHELL + :E Invalid command interpreter\n + :T Neplatný pøíkazový interpretr\n + !E_NOSHELL + :E Command interpreter not available\n + :T Tento pøíkazový interpretr není k dispozici\n + !E_NOHOME + :E No home directory specified + :T Není definován domovský adresáø + !N_IS_OK + :E is ok + :T je v poøádku + !E_IVLDGRP + :E have invalid group + :T má neplatnou skupinu + !E_IVLDOWN + :E have invalid owner + :T má neplatného vlastníka + !E_IVLDG_O + :E have invalid owner and group + :T má neplatného vlastníka a skupinu + !E_EXISTDIR + :E do exist, but is not a directory + :T existuje, ale není to adresáø + !E_DONOTEXIST + :E does not exist + :T neexistuje + !E_HOMEUSER + :E Home directory of user %s: %s\n %s\n + :T Domovský adresáø u¾ivatele %s: %s\n %s\n + !P_SETUSERDIR + :E set user %s directory\n + :T nastavit domovský adresáø pro %s\n + !E_SETUPDIR + :E Can't setup user %s's home directory %s\nreason: %s\n + :T Nelze nastavit domovský adresáø pro %s\npøíèina: %s\n + !F_LOGIN + :E Login name + :T U¾ivatelské jméno + !F_FULLNAME + :E Full name + :T Úplné jméno + !F_GROUP + :E group + :T Skupina + !F_HOME + :E Home directory(opt) + :T Domovský adresáø (nepov) + !F_SHELL + :E Command interpreter(opt) + :T Pøíkazový interpret(nepov) + !F_UID + :E User ID(opt) + :T ID u¾ivatele (nepov) + !T_USERINFO + :E User information + :T Informace o u¾ivateli + !I_USERINTRO + :E You must specify at least the name\nand the full name + :T Nutno uvést alespoò u¾ivatelské a plné jméno + !P_USERDATA + :E to maintain the user database + :T pro údr¾bu databáze u¾ivatelù + !E_NO2PT + :E No : in any field allowed + :T : není povolena v ¾ádné polo¾ce + !Q_CREATE + :E \nDo you want to create it ? + :T \nChcete vytvoøit? + !Q_FIXIT + :E \nDo you want to fix it ? + :T \nMám to opravit? + !Q_USERHOME + :E User home directory + :T Domovský adresáø u¾ivatele + !E_NULLPASS + :E Empty password not allowed.\n + +Only root is allowed to do so.\n + +This is not a good idea though! + :T Prázdné heslo není povoleno.\n + +To smí nastavit jedinì root.\n + +Ale stejnì to není dobrá my¹lenka! + !E_WEAKPASS + :E Password not accepted\n + +Select a more complicated one\n + +The local policies are\n + +\n + +Minimum length : %d\n + +Minimum number of non-alpha character : %d\n + :T Heslo neakceptováno\n + +Vyberte slo¾itej¹í.\n + +Pravidla jsou:\n + +\n + +Minimální délka : %d\n + +Minimální poèet znakù jiných ne¾ písmena : %d\n + !F_PASSWORD + :E Password + :T Heslo + !F_CONFIRM + :E Confirmation + :T Potvrzení hesla + !T_PASSWORD + :E %s's password + :T heslo %s + !I_PASSINTRO + :E You must enter the new password twice\n + +To make sure you have enter it\n + +correctly.\n + :T Heslo je nutné zadat dvakrát\n + +aby se ovìøilo, ¾e je zadáno\n + +správnì.\n + !E_MISMATCH + :E The two new passwords differ\nPlease try again\n + :T Vlo¾ená hesla jsou rùzná\nZkuste je zadat znovu\n + !N_ACCEPT + :E New password for user %s accepted + :T Heslo u¾ivatele %s zmìnìno + !T_CHGYOURPASS + :E Changing your password + :T Zmìna va¹eho hesla + !I_ENTERYOURPASS + :E Please enter your current password + :T Zadejte aktuální heslo + !M_USER + :E User accounts + :T U¾ivatelské úèty + !M_GROUPDEF + :E Group definitions + :T Definice skupin + !M_ROOTPASS + :E Change root password + :T Zmìna hesla u¾ivatele root + !M_PPP + :E PPP accounts + :T Úèty PPP + !M_SLIP + :E SLIP accounts via normal login + :T Úèty SLIP pomocí normálního loginu + !M_UUCP + :E UUCP accounts + :T Úèty UUCP + !M_POP + :E POP accounts (mail only) + :T Úèty POP (jen e-mail) + !M_POLICIES + :E Password & account policies + :T Pravidla pro hesla a úèty + !T_UCONF + :E User account configurator + :T Konfigurátor u¾ivatelských úètù + !I_UCONFINTRO + :E This package allows you to add/delete\nand manage user accounts\n + :T Tento balík umo¾òuje pøidávat/mazat\na spravovat u¾ivatelské úèty\n + !P_POP + :E setup POP account + :T nastavení úètu pro POP + !P_PPP + :E setup PPP account + :T nastavení úètu pro PPP + !P_SLIP + :E setup SLIP account + :T nastavení úètu pro SLIP + !P_UUCP + :E setup UUCP account + :T nastavení úètu pro UUCP + !P_CHGPASS + :E change users password + :T zmìna u¾ivatelských hesel + !E_NOUID + :E Can't locate entry for uid %d\nin %s + :T Polo¾ka pro u¾ivatele s ID %d nenalezena\nv %s + !E_UNKNOWNUSER + :E Unknown user %s\n + :T Neznámý u¾ivatel %s\n + !T_USERACCT + :E Users accounts + :T U¾ivatelské úèty + !I_CANEDIT + :E You can edit, add, or delete users + :T Zde lze upravovat, pøidávat a mazat u¾ivatelské úèty + !I_SELECT + :E You must select one of those users + :T Nutno vybrat jednoho z u¾ivatelú + !P_USERDB + :E to maintain the user database + :T spravovat databázi u¾ivatelù + !I_USERCREATE + :E User account %s does not exist\nDo you want to create it + :T Úèet %s neexistuje\nChcete ho vytvoøit? + !Q_USERCREATE + :E Account creation + :T Tvorba úètu + !W_CHGPASS + :E Changing password for %s\n + :T Zmìna hesla pro %s\n + !Q_ENTEROLDPASS + :E Enter old password: + :T Vlo¾te staré heslo: + !Q_ENTERNEWPASS + :E Enter new password: + :T Vlo¾te nové heslo: + !Q_RETYPE + :E Re-type new password: + :T Zopakujte nové heslo: + !Q_DELGROUP + :E Confirm deletion of group definition + :T Potvrïe smazání skupiny + !T_PASSMNG + :E Password management + :T Správa hesel + !F_PASSMAY + :E Must keep # days + :T Nelze alespoò ? dnù mìnit + !F_PASSMUST + :E Must change after # days + :T Nutno zmìnit po ? dnech + !F_PASSWARN + :E Warn # days before expiration + :T Varování ? dnù pøed vypr¹ením + !F_PASSEXPIRE + :E Account expire after # days + :T Úèet vypr¹í po ? dnech + !B_PASSWD + :E Passwd + :T Heslo + !T_PRIVILEGES + :E Privileges + :T Privilégia + !E_NOUSER + :E No user %s in /etc/passwd\nprivilege denied + :T U¾ivatel %s není v /etc/passwd\nprivilégium zamítnuto + !F_ROOTPASS + :E root password + :T heslo root + !F_YOURPASS + :E Your password + :T Va¹e heslo + !F_MANAGEPOP + :E POP accounts manager + :T Správce POP úètù + !F_MANAGEPPP + :E PPP accounts manager + :T Správce PPP úètù + !F_MANAGEUUCP + :E UUCP manager + :T Správce UUCP + !I_ENTERONEPASS + :E Enter password for root or your password\n + +The superuser and you are allowed to perform\n + +this configuration task. + :T Zadejte heslo pro root nebo va¹e heslo\n + +Root a vy mù¾e toto konfigurovat. + !E_NOUSERFROMID + :E Can't identify you from your user ID (%d) + :T Nelze provést identifikaci dle vaèeho ID (%d) + !I_EMPTYLINE + :E Select [Add] to add an empty line + :T Pomocí [Pøidej] lze pøidat prázdný øádek + !E_SHELLUNKNOWN + :E Shell %s does not exist + :T Pøíkazový interpretr %d neexistuje + !T_USERSHELL + :E Standard user shells + :T Standardní pøíkazové interpretry pro u¾ivatele + !T_PPPSHELL + :E Available PPP login shells + :T Pøihla¹ovací interpretry pro PPP, které jsou k dispozici + !T_SLIPSHELL + :E Available SLIP login shells + :T Pøihla¹ovací interpretry pro SLIP, které jsou k dispozici + !M_USRSHELLS + :E Available user shells + :T Pøihla¹ovací u¾ivatelské interpretry + !M_PPPSHELLS + :E Available PPP shells + :T Pøihla¹ovací interpretry pro PPP, které jsou k dispozici + !M_SLPSHELLS + :E Available SLIP shells + :T Pøihla¹ovací interpretry pro SLIP, které jsou k dispozici + !T_MANAGEACCT + :E User accounts + :T U¾ivatelské úèty + !O_DENY + :E Denied + :T Zakázán + !O_PRIVENABLE + :E Granted + :T Povolen + !O_PRIVNOAUTH + :E Granted/silent + :T Povolen/potichu + !F_PRIVENABLE + :E Granted + :T Pøidìlen + !E_ROOTID + :E Only root can get user id 0\n + :T ID 0 mù¾e mít jen root\n + !T_NEWUSER + :E User account creation + :T Vytvoøení u¾ivatelského úètu + !F_WASCHG + :E Last password change + :T Poslední zmìna hesla + !T_SHADEF + :E Account management defaults + :T Implicitní vlastnosti úètù + !F_STDDURATION + :E Standard account duration + :T Standardní délka platnosti úètu + !F_WASISDIS + :E Expiration date (yyyy/mm/dd) + :T Datum vyp¹ení (rrrr/mm/dd) + !E_IVLDDATE + :E Invalid date + :T Neplatný datum + !E_ROOTPASS + :E You are not allowed to change root's password\nin demo mode. + :T V demo módu nelze mìnit root heslo + !E_NONAME + :E No login name supplied + :T Nezadáno jméno úètu + !M_EALIAS + :E Email aliases + :T E-mailové aliasy + !E_SHELLNOTEXEC + :E Shell %s is not executable + :T Interpretr %s není spustitelný + !F_NEWPASSWORD + :E New password + :T Nové heslo + !F_PASSCONFIRM + :E New password again + :T Znovu nové heslo + !T_IDENTIFY + :E Change your password + :T Zmìna va¹eho hesla + !I_IDENTIFY + :E Enter you account id and your current password\n + +followed by the new password you want. You must\n + +enter it twice to make sure you have it right + :T Zadejte u¾ivatelské jméno a momentální heslo,\n + +poté zadejte nové heslo. Nové heslo musí být\n + +být zadáno dvakrát pro ovìøení správnosti + !E_IVLDUPASS + :E Invalid user or password\nTry again! + :T Neplatné heslo nebo u¾ivatelské jméno\nZkuste znovu! + !F_ACCOUNT + :E Account + :T Úèet + !F_CURPASSWORD + :E Current password + :T Momentální heslo + !N_NEWPASSOK + :E Your new password has been accepted! + :T Nové heslo nastaveno! + !I_SERVER + :E

      Server %s

      \n
      \n + :T

      Server %s

      \n
      \n + !E_UPASSROOT + :E Can't change the password\nof the superuser this way. Sorry! + :T Heslo roota nelze takto mìnit\nSorry! + !E_ACCTLOCKED + :E This account is locked\nyou are not allowed to change the password + :T Tento úèet je zamèet\nnemáte právo mìnit heslo + !E_PASSLOCKED + :E You are not allowed to change your password\n + +Only the administrator is allowed to do it. + :T Nemáte právo mìnit svì heslo\n + +Jedinì administrátor má toto právo. + !E_PASSWAIT + :E You must wait %d day(s) before changing your password again. + :T Va¹e heslo lze znovu zmìnit a¾ za % dnù. + !E_PICKNEW + :E Pick a different new password please + :T Vyberte jiné heslo + !F_CRONRANGE + :E From %d to %d + :T Od %d do %d + !F_COMMAND + :E Command + :T Pøíkaz + !F_MONTHS + :E Months + :T Mìsíce + !F_ISJANUARY + :E is January + :T je leden + !F_ISDECEMBER + :E is December + :T je prosinec + !F_DMONTH + :E Days of the month + :T Dny v mìsíci + !F_DWEEK + :E Days of the week + :T Dny v týdnu + !F_ISSUNDAY + :E is Sunday + :T je nedìle + !F_ISSATURDAY + :E is Saturday + :T je sobota + !F_HOURS + :E Hours + :T Hodiny + !F_MINUTES + :E Minutes + :T Minuty + !T_CRONENTRY + :E Schedule job definition + :T Definice plánování úlohy + !I_CRONENTRY + :E You can define a command which will be\nfollowed a precise schedule + :T Lze definovat pøíkaz, který se bude vykonávat podle èasového plánu + !T_JOBS + :E Schedule jobs for account %s + :T Plánování úloh pro úèet %s + !B_TASKS + :E Tasks + :T Úkoly + !F_3VALUES + :E Any of those three + :T Libovolné z tìhto tøech + !F_CRONSTEP + :E From %d to %d step 2 + :T Od %d do %d druhý krok + !F_ENABLED + :E This entry is active + :T Tento záznam je aktivní + !P_CRON + :E maintain cron files + :T správa souborù pro cron + !F_EVERY + :E Every + :T Ka¾dý + !F_MONTH + :E month + :T mìsíc + !F_DAYOFMONTH + :E days of the month + :T den v mìsíci + !F_DAYOFWEEK + :E days of the week + :T den v týdnu + !F_hOURS + :E hours + :T hodiny + !F_mINUTES + :E minutes + :T minuty + !T_BASE + :E Base info + :T Základní informace + !T_PARAMS + :E Params + :T Parametry + !M_NORMAL + :E Normal + :T Normální + !T_PRIVROOTEQUIV + :E SuperUser equivalence + :T Ekvivalentní root + !T_CHGROOTPASS + :E Changing super user password + :T Zmìna hesla pro root + !I_ENTERROOTPASS + :E Please enter root's password + :T Zadejte, prosím, heslo pro root + !T_POLICIES + :E Policies + :T Pravidla + !E_PASSWDCMD + :E Usage: passwd\n + + Change your own password\n + + passwd user_account\n + + Change interactivly this user account password\n + + passwd -h\n + + passwd --help\n + + Print this screen\n + + passwd -l user_account\n + + Lock the account\n + + passwd -P user_account\n + + Change the password from a pipe\n + + echo new_passwd | passwd -P user_account\n + + passwd -u user_account\n + + Unlock the account\n + :T Pou¾ití: passwd\n + + Zmìna va¹eho hesla\n + + passwd user_account\n + + Interaktivní zmìna hesla pro tento úèet\n + + passwd -h\n + + passwd --help\n + + Tento text\n + + passwd -l user_account\n + + Zamknout úèet\n + + passwd -P user_account\n + + Zmìna heslo pomocí roury\n + + echo new_passwd | passwd -P user_account\n + + passwd -u user_account\n + + Odemèení úètu\n + !E_UNLOCKPASS + :E Unlock not done. This would yield an account\nwithout password + :T Neodemèeno. Vznikl by úèet bez hesla + !N_UNLOCK + :E Account is unlocked, old password left in place + :T Úèet odemknut, staré heslo nezmìnìno + !H_GROUPS + :E Group\tID\tAlternate members + :T Skupina\tID\tÈlenové + !F_USERPREFIX + :E Login Prefix + :T Pøedpona u¾ivatelského jména + !I_USERPREFIX + :E The list of users is long, so you\n + +may want to filter it a bit by providing\n + +a prefix to search. An empty prefix means to show\n + +all users. + :T Seznam u¾ivatelù je dlouhý, mo¾ná\n + +chcete definovat filter uvedením\n + +pøedpony pro hledání. Prázdná pøedpona znamená\n + +zobrazení v¹ech u¾ivatelù. + !T_USERPREFIX + :E Filter control + :T Ovládání filtru + !H_USERS + :E Account\tName\tUid\tGroup + :T Úèet\tJméno\tUID\tSkupina + !T_GDISKQUOTA + :E Group disk quota + :T Disková kvóta pro skupinu + !T_UDEFDISKQUOTA + :E Members default disk quota + :T Implicitní disková kvóta èlenù + !T_DISKQUOTA + :E Disk quota + :T Disková kvóta + !F_DEFSHELL + :E Default shell + :T Implicitní interpretr + !E_IVLDDEF + :E Default shell is not a member\nof the list + :T Implicitní interpretr není v seznamu + !E_NOSPACE + :E No spaces allowed here + :T Mezery nejsou povoleny + !E_IVLDPERIOD + :E Invalid period definition + :T Neplatná definice periódy + !E_UEXIST + :E User account %s already exists\n + :T Úèet %s u¾ existuje\n + !E_UNOTEXIST + :E User account %s does not exist\n + :T Úèet %s neexistuje\n + !T_SPCACCTS + :E Special accounts + :T Speciální úèty + !X_PASSWD + :E Passwd + :T Heslo + !X_TASKS + :E Tasks + :T Úkoly + !F_DEFHOME + :E Default base dir for homes + :T Implicitní adresáø pro domovské adresáøe + !E_GNOTEXIST + :E Group %s does not exist\n + :T Skupina %s neexistuje\n + !F_NEWUSERCMD + :E Post-create command + :T Pøíkaz po vytvoøení + !F_DELETECMD + :E Delete account command + :T Pøíkaz pro mazání úètu + !E_NOTDEL + :E Account not deleted + :T Úèet nesmazán + !I_NOTDEL + :E User account was not deleted\n + +because the post-deletion command failed\n + +\n + +Do you want to see the log ? + :T U¾ivatelský úèet nebyl smazán,\n + +proto¾e pøíkaz, který se má vykonat po smazání, selhal\n + +\n + +Zobrazit log soubor? + !E_DELANYWAY + :E Delete anyway + :T Stejnì smazat + !I_DELANYWAY + :E Would you like to delete this account\n + +even if the post-deletion command failed ? + :T Chcete smazat tento úèet\n + +i kdy¾ pøíkaz po smazání selhal? + !E_PREDELFAIL + :E Pre-delete command failed for account %s\n + :T Pøíkaz pøe smazáním selhal pro úèet %s\n + !F_PRIVGROUP + :E Private group + :T Privátní skupina + !I_PRIVGROUP + :E One group per user + :T Pro ka¾dého u¾ivatele vlastní skupina + !E_NOGROUP + :E You must specify a group + :T Nutno specifikovat skupinu + !I_CREATEGROUP + :E Group %s does not exist\nDo you want to create it? + :T Skupina %s neexistuje\nChcete ji vytvoøit? + !T_CREATGROUP + :E Create group + :T Vytvoøit skupinu + !F_SUPGROUP + :E Supplementary groups + :T Ostatní skupiny + !E_IVLDSUPGROUP + :E Invalid supplementary group list + :T Neplatný seznam ostatních skupin + !F_GECOSPREFIX + :E Full name prefix + :T Pøedpona plného jména + !F_UID_FROM + :E UID From + :T UID od + !F_UID_TO + :E UID To + :T UID do + !E_GEXIST + :E Group %s already exists\n + :T Skupina %s u¾ existuje\n + !F_GROUPOPT + :E group (opt) + :T skupina (nepov) + !F_ARCHIVECMD + :E Archive account command + :T Pøíkaz pro archivaci úètu + !F_POSTDELCMD + :E Pre-delete command + :T Pøíkaz pøed smazáním + !I_ARCHACCTDATA + :E Archive the account's data + :T Archivuj data tohoto úètu + !I_DELACCTDATA + :E Delete the account's data + :T Sma¾ data tohoto úètu + !I_LEAVEDATA + :E Leave the account's data in place + :T Data tohoto úètu nechat na místì + !T_DELACCT + :E Deleting account %s + :T Ma¾u úèet %s + !I_DELACCT + :E You are deleting an account.\n + +The home directory and the mail inbox folder\n + +may be archived, deleted or left in place + :T Ma¾ete u¾ivatelský úèet.\n + +Domovský adresáø a e-mailovou schránku\n + +lze archivovat, smazat, nebo nechat na místì + !I_ENABLED + :E The account is enabled + :T Úèet je povolen + !T_YOURNAME + :E Your accound ID + :T ID va¹eho úètu + !I_YOURNAME + :E Please enter your account name + :T Zadejte va¹e u¾ivatelské jméno + !E_PASSCHG + :E Password was not changed + :T Heslo nezmìnìno + !I_DELETING + :E Delete account %s (%s)\n + :T Ma¾u úèet %s (%s)\n + !I_CREATING + :E Creating user account %s (%s)\n + :T Vytváøím úèet %s (%s)\n + !T_SPCLINKS + :E Special links + :T Speciální linky + !T_CHGPASS + :E Change your password + :T Zmìòte své heslo + !T_EdITUSERS + :E Administer user accounts + :T Správa u¾ivatelských úètù + !T_HOMEDIRS + :E Directories + :T Adresáøe + !F_DIFFDIR + :E Different directory + :T Rùzné adresáøe + !I_CREATEHOME + :E for each members + :T pro ka¾dého èlena + !F_HOMEBASE + :E Home base directory + :T Adresáø pro domovské adresáøe + !F_CREATEPERM + :E Creation permissions + :T Práva pøi vytváøení + !Q_MISSBASE + :E Home base %s does not exist\nDo you want to create it + :T Adresáø %s neexistuje\nChcete ho vytvoøit? + !T_MISSBASE + :E Missing home base + :T Chybí adresáø pro domovské adresáøe + !E_IVLDDIR + :E Home base %s exist\nbut is not a directory + :T %s existuje\nale není to adresáø + !I_USAGE + :E userconf command line options\n + +\n + + --adduser userid group username shell\n + + --deluser userid\n + + --addgroup group\n + + --delgroup group\n + + --help + :T userconf pøepínaèe\n + +\n + + --adduser userid group username shell\n + + --deluser userid\n + + --addgroup group\n + + --delgroup group\n + + --help diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/usermenu.dic linuxconf-1.15/messages/cz/usermenu.dic *** linuxconf-1.14r4/messages/cz/usermenu.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/usermenu.dic Fri Mar 26 10:47:23 1999 *************** *** 0 **** --- 1,49 ---- + @version 0 + !I_OPTIONS + :E Linuxconf's options + :T Nastavení Linuxconfu + !T_ONEMENU + :E One user menu + :T Nabídka pro jednoho u¾ivatele + !I_ONEMENU + :E Select the options you want to see\nin your custom menu + :T Vyberte nastavení, které chcete mít\nve va¹í osobní nabídce + !I_NEWMENU + :E Select [Add] to define a new menu + :T Pomocí [Pøidej] definujte novou nabídku + !T_USERMENUS + :E User defined menus + :T U¾ivatelské nabídky + !I_USERMENUS + :E Here is the list of user defined menus + :T Toto je seznam nabídek definovaných u¾iavtely + !M_usermenu + :E User defined menu + :T U¾ivatelská nabídka + !T_USAGE + :E Module usermenu\n\n Supply the menu ID to start the user menu\n + :T Modul usermenu\n\n Dodejte ID nabídky pro její spu¹tìní\n + !E_NOSPACE + :E No space in menu ID + :T Není místo pro ID nabídky + !F_MENUID + :E Menu ID + :T ID nabídky + !F_MENUTITLE + :E Menu title + :T Titulek nabídky + !P_ENTERMENU + :E enter this menu + :T tato nabídka + !T_UMENUPRIV + :E User defined menus + :T U¾ivatelské nabídky + !T_MENULIST + :E List of user defined menus + :T Seznam u¾ivatelských nabídek + !T_MENUID + :E Menu ID + :T ID nabídky + !T_MENUDESC + :E Description + :T Popis diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/uucp.dic linuxconf-1.15/messages/cz/uucp.dic *** linuxconf-1.14r4/messages/cz/uucp.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/uucp.dic Mon Mar 29 07:21:56 1999 *************** *** 0 **** --- 1,228 ---- + @version 0 + !E_IVLKEYW + :E Invalid keyword \"%s\"\n + :T Neplatné klíèové slovo \"%s\"\n + !E_IVLKEYPAIR + :E Invalid keyword value pair\nexpected an equal sign\n\t%s\n + :T Neplatný klíè\noèekáván znak =\n\t%\n + !F_UUCPSYS + :E Remote system name + :T Jméno vzdáleného systému + !F_WHEN + :E Schedule + :T Plánování + !F_PHONE + :E Phone + :T Telefon + !F_COMMENT + :E Comment + :T Komentáø + !T_SYSTEM + :E One system configuration + :T Konfigurace jednoho systému + !I_ADDSYS + :E Select [Add] to define one new configuration + :T Pomocí [Pøidej] lze definovat konfiguraci pro nový systém + !T_SYSTEMS + :E Edit uucp configurations + :T Úprava konfigurací UUCP + !I_SYSTEMS + :E Each configuration control the way\n + +your computer interact with other computers using\n + +the UUCP protocol (background file transfer)\n + :T Ka¾dá konfigurace nastavuje, jak\n + +má tento poèítaè spolupracovat s jinými pomocí\n + +UUCP protokolu (pøenos souborù na pozadí)\n + !I_SYSTEM + :E You must define how and when one\nsystem can be reached.\n + :T Nutno definovat, jak a kdy je\nje daný systém dosa¾itelný.\n + !M_SYSTEMS + :E systems + :T systémy + !M_HOSTS + :E devices and modems + :T zaøízení a modemy + !M_CONFIG + :E Configure + :T Nastavení + !T_UUCP + :E UUCP configurator + :T Konfigurátor UUCP + !I_UUCP + :E This package allows you to configure from\n + +scratch a UUCP network using modem\n + +and serial devices + :T Tato obrazovka umo¾òuje nastavit\n + +úplnì od zaèátkù sí» UUCP zalo¾enou na modemech\n + +a sériových zaøízeních + !E_NETCONF + :E uucpconf: Invalid arguments\n + :T uucpconf: Neplatné argumenty\n + !E_NETCONFDEF + :E uucpconf without argument start the interactive mode\n + :T uucpconf bez parametrù nastartuje v interaktivním módu\n + !E_NOTDONE + :E Not done yet, sorry! + :T Neimplementováno, sorry! + !M_ANY + :E Your system call anytime needed + :T Navázat spojení, v¾dy kdy¾ je to potøeba + !M_NEVER + :E The other site is calling you + :T Volá druhá strana + !M_EXAMPLE + :E One example + :T Pøíklad + !E_EMPTY + :E must not be empty\n + :T nesmí být prázdný\n + !E_NAME + :E Site name + :T Jméno poèítaèe + !E_SPEED + :E modem speed + :T rychlost modemu + !E_PHONE + :E Phone + :T Telefon + !E_SOMERRORS + :E There are some errors\n%s + :T Nastaly nìjaké chyby\n%s + !E_SCHED + :E Schedule + :T Plán + !P_UUCP + :E to manage uucp + :T spravovat UUCP + !T_PERMCONF + :E Permission configuration + :T Nastavení práv + !F_LOGNAME + :E Login name + :T U¾ivatelské jméno + !F_MAYREQUEST + :E May request files + :T Mù¾e po¾adovat soubory + !F_DIRREAD + :E May read + :T Mù¾e èíst + !F_MAYSEND + :E May send files + :T Mù¾e posílat soubory + !F_MAYWRITE + :E May write + :T Mù¾e psát + !F_MAYEXEC + :E Available commands + :T Pøíkazy k dispozici + !F_MASQUERADE + :E Masquerade as + :T Tváøit se jako + !T_LOGINSCRIPT + :E Login script + :T Pøihla¹ovací skript + !F_SEND + :E Send + :T Poslat + !F_EXPECTEDLOGIN + :E Expected login prompt + :T Oèekávaná pøihla¹ovací výzva + !F_EXPECTED + :E Expected + :T Oèekáván + !F_TYPE + :E Transport type + :T Typ pøenosu + !M_DIRECT + :E Null modem serial line + :T Null modem po sériové lince + !M_UUCPTCP + :E UUCP over TCP/IP + :T UUCP pomocí TCP/IP + !M_MODEM + :E Modem device + :T Modem + !F_SCHED + :E Polling schedule + :T Plán zkou¹ení + !F_MODEMTYPE + :E Modem type + :T Typ modemu + !T_DEVICE + :E Uucp device configuration + :T Nastavení zaøízení pro UUCP + !I_DEVICE + :E You must specify the speed range\n + +and the modem type associated with a serial\n + +device. + :T Nutno zadat rozmezí rychlostí\n + +a typ modemu asociovaného s daným\n + +sériovým zaøízením. + !T_DEVICES + :E Edit uucp devices configuration + :T Úprava nastavení UUCP zaøízení + !I_DEVICES + :E Each configuration control an uucp device\n + +and the way this device (modem) is\n + +initialised/dialed\n + :T Ka¾dá konfigurace ovládá jedno zaøízení pro UUCP\n + +a zpùsob, jakým je toto zaøízení (modem)\n + +inicializováno a ovládáno\n + !E_EMPTYLOGNAME + :E No login name + :T Nezadáno jméno pro pøihlá¹ení + !E_NOEDIT + :E No edit on this field + :T Nelze editovat tuto polo¾ku + !Q_DELSYSTEM + :E Confirm deletion of uucp system + :T Potvïte smazání UUCP konfigurace + !E_TRANS + :E Transport type + :T Typ pøenosu + !M_TASKS + :E scheduled tasks + :T Naplánované úkoly + !Q_INSTALLTASKS + :E Install standard uucp tasks + :T Nainstalovat standardní UUCP úkoly + !I_INSTALLTASKS + :E UUCP requires some scheduled tasks to operate.\n + +There is no tasks configured on your system.\n + +Do you want to install preset values ? + :T UUCP vy¾aduje naplánování nìkterých úkolù.\n + +Tyto nejsou na tomto poèítaèi nastaveny.\n + +Mají se nainstalovat pøeddefinované hodnoty? + !O_UUCICO + :E Process the outbound queue + :T Zpracuj výstupní frontu + !O_POLL + :E Generate poll requests + :T Generování po¾adavkù na zkou¹ení (poll) + !O_CLEANUP + :E Cleanup the different logs + :T Vyèi¹tìní rùzných logù + !M_UUCPSYS + :E Unix To Unix copy (UUCP) + :T Unix To Unix copy (UUCP) + !M_UUCP + :E UUCP (Unix to unix copy) + :T UUCP (Unix to unix copy) + !F_SERIALDEF + :E Serial device + :T Sériové zaøízení + !F_FIRSTCOM + :E first standard serial port COM1 + :T První standardní sériový port COM1 + !F_SECONDCOM + :E Second standard serial port COM2 + :T Druhý standardní sériový port COM2 + !F_COM1M + :E COM1 when using mgetty + :T Pro mgetty pou¾ít COM1 + !F_COM2M + :E COM2 when using mgetty + :T Pro mgetty pou¾ít COM2 + !F_BAUD + :E Baud rate + :T Pøenos v Baudech diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/wuftpd.dic linuxconf-1.15/messages/cz/wuftpd.dic *** linuxconf-1.14r4/messages/cz/wuftpd.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/wuftpd.dic Fri Apr 9 12:32:29 1999 *************** *** 0 **** --- 1,148 ---- + @version 0 + !M_wuftpd + :E Ftp server (wu-ftpd) + :T FTP server (wu-ftpd) + !T_USAGE + :E Module wuftpd\n + +\n + + Without argument, enter the module main menu\n + + --help\n + + --addvhost vhost --root path\n + + --delvhost vhost\n + :T Modul wuftpd\n + +\n + + Bez argumentù se spustí hlavní nabídka modulu\n + + --help\n + + --addvhost vhost --root path\n + + --delvhost vhost\n + !T_BASE + :E Base configuration + :T Základní konfigurace + !T_FTPCONF + :E Wu-ftpd configurator + :T Nastavení Wu-ftpd + !T_EMAIL + :E Email of admin + :T E-mail administrátora + !F_ADDR + :E Virtual host + :T Virtuální server + !F_ROOT + :E Archive path + :T Cesta k archívu + !F_BANNER + :E Banner message file + :T Soubor s úvodní zprávou + !F_LOGFILE + :E Log file + :T Logovací soubor + !I_DELREC + :E Select [Del] to delete this record + :T Pomocí [Sma¾] lze smazat tento záznam + !H_VIRTUALS + :E Address\tRoot dir + :T Adresa\tKoøenový adresáø + !T_VIRTUALS + :E Virtual hosts + :T Virtuální servery + !I_ADMINTREES + :E Here are the various virtual hosts for anonymous ftp. + :T Zde jsou rùzné virtuální poèítaèe pro anonymní FTP. + !T_ONEVIRTUAL + :E One virtual ftp host + :T Jeden virtuální server FTP + !T_FTPBASECONF + :E Ftp server configuration + :T Konfigurace FTP serveru + !M_BASIC + :E Basic configuration + :T Základní konfigurace + !M_VIRTUAL + :E Virtual hosts + :T Virtuální servery + !I_COMPRESS + :E May request compress files + :T Lze po¾adovat komprimované soubory + !I_TAR + :E May request tar files + :T Lze po¾adovat soubory tar + !I_CHMOD + :E May chmod files + :T Lze mìnit pøístupová práva + !I_DELETE + :E May delete files + :T Lze mazat soubory + !I_OVERWRITE + :E May overwrite files + :T Lze pøepisovat soubory + !T_RENAME + :E May rename files + :T Lze pøejmenovat soubory + !I_LOGINBOUND + :E Log inbound transfers + :T Zaznamenávat zápisy + !I_LOGOUTBOUND + :E Log outbound transfers + :T Zaznamenávat ètení + !N_MISC + :E Misc + :T Rùzné + !T_MISC + :E Misc. + :T Rùzné + !T_GUESTGROUP + :E Guest groups + :T Skupiny pro hosty + !T_BANNER + :E Banner file + :T Soubor s úvodní zprávou + !N_ACCESSCTRL + :E Control + :T Ovládání + !T_ACCESSCTRL + :E Access controls + :T Pøístupová práva + !T_REALUSERS + :E Real users + :T Skuteèní u¾ivatelé + !T_GUESTUSERS + :E Guest users + :T Hosté + !T_ANONYMOUS + :E Anonymous + :T Anonymous + !T_SHUTDOWN + :E Shutdown message + :T Zpráva pøi vypínání + !M_WUFTPD + :E wu-ftpd server + :T wu-ftpd server + !I_NEWROOTDIR + :E The directory for anonymous ftp does not exist.\n + +Do you want to create directory %s\n + +and initialise it so it become suitable for\n + +anonymous ftp operation ? + :T Adresáø pro anonymní pøístup neexistuje.\n + +Má se vytvoøit %s\n + +a vhodnì naplnit pro anonymní FTP pøístup? + !T_NEWROOTDIR + :E Create root dir + :T Vytvoøit koøenový adresáø + !T_MVIRTUAL + :E ftp + :T ftp + !E_VHOSTEXIST + :E Virtual host %s\nis already configured\nfor the service ftp + :T Virtuální server %s\nu¾ je nakonfigurován\n pro slu¾bu FTP + !E_HOSTEXIST + :E Wuftpd: Virtual host %s already configured\n + :T Wuftpd: Virtuální server %s u¾ byl nakonfigurován\n + !E_IVLDOPT + :E Invalid option %s\n + :T Neplatný pøepínaè %s\n + !E_MISSING + :E Wuftpd: Virtual host %s is not configured\n + :T Wuftpd: Virtuální server %s nebyl nakonfigurován\n + !E_NOROOT + :E Wuftpd: no root specified\n + :T Wuftpd: Nebyl zadán koøenový adresáø\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/xconf.dic linuxconf-1.15/messages/cz/xconf.dic *** linuxconf-1.14r4/messages/cz/xconf.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/xconf.dic Fri Mar 26 10:46:26 1999 *************** *** 0 **** --- 1,8 ---- + @version 0 + !E_MISSCONF + :E %s nor %s do exist\n + :T %s ani %s neexistuje\n + !E_MISSDIR + :E %s or %s exist, but %s does not\n + :T %s nebo %s existuje, ale %s ne\n + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/cz/xterminals.dic linuxconf-1.15/messages/cz/xterminals.dic *** linuxconf-1.14r4/messages/cz/xterminals.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/cz/xterminals.dic Fri Mar 26 10:46:54 1999 *************** *** 0 **** --- 1,22 ---- + @version 0 + !M_xterminals + :E Xterminals manager + :T Správce XTerminals + !T_USAGE + :E xterminals usage\n\nxterminals --option ...\n + :T pou¾ití xterminals\n\nxterminals --option ...\n + !M_INSTALL + :E Server installation + :T Instalace serveru + !M_BOOTFLOP + :E Build a boot floppy + :T Vytvoøit bootovací disketu + !T_XTERMINALS + :E X terminals administration + :T Administrace X terminálù + !I_XTERMINALS + :E This menu allows to configure the X terminals services + :T Tato obrazovka umo¾òuje nastavit slu¾by X terminálù + !M_INSTPKG + :E Install/Update packages + :T Instaluj/Obèerstvi balíky diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/apache.dic linuxconf-1.15/messages/es/apache.dic *** linuxconf-1.14r4/messages/es/apache.dic Fri Feb 19 18:52:36 1999 --- linuxconf-1.15/messages/es/apache.dic Wed Mar 31 13:53:07 1999 *************** *** 1,3 **** --- 1,8 ---- @version 0 + !I_DIRRULES + :T Ud. puede realizar configuraciones que\n + +se aplicarán a este directorio y sus subdirectorios\n + :E You are allowed to enter configurations\n + +which apply to this directory and its sub-directories\n !I_NEWDIR :T Seleccione [Agregar] para una nueva regla de directorio *************** *** 125,133 **** :E Directory path :T Directorio - !I_DIRRULES - :E You are allowed to enter configurations\n - +whîch apply to this directory and its sub-directories\n - :T Ud. puede realizar configuraciones que\n - +se aplicarán a este directorio y sus subdirectorios\n !T_DIRS :E Directories --- 130,133 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/askrunlevel.dic linuxconf-1.15/messages/es/askrunlevel.dic *** linuxconf-1.14r4/messages/es/askrunlevel.dic Mon Dec 14 17:42:55 1998 --- linuxconf-1.15/messages/es/askrunlevel.dic Wed Apr 7 14:23:55 1999 *************** *** 1,3 **** --- 1,10 ---- @version 0 + # *** updated message + !E_IVLSECTOR + :Z Invalid partition or device for boot sector\ninstallation + :T La partición o el dispositivo de arranque\nno son válidos + :E Unusual partition or device for boot sector\n + +installation. This will probably yield a non\n + +bootable system. !E_GRAPH :E Can't do this\nbecause the Graphic mode is not yet\nconfigured\n\n%s *************** *** 90,94 **** !I_WARN :E \nUnless you select something within %d seconds\n\"%s\" will start automaticly ! :T \nA menos que seleccione algo dentro de %s segundos\n\"%s\" se iniciará automáticamente !T_OPERMODE :E Operation mode --- 97,103 ---- !I_WARN :E \nUnless you select something within %d seconds\n\"%s\" will start automaticly ! :T \n ! +A menos que seleccione algo dentro de %s segundos\n ! +\"%s\" se iniciará automáticamente !T_OPERMODE :E Operation mode *************** *** 132,136 **** !F_STD8025 :E standard 80x25 ! :T 80x25 estándard !F_BOOTOPT :E Boot options --- 141,145 ---- !F_STD8025 :E standard 80x25 ! :T 80x25 estándard !F_BOOTOPT :E Boot options *************** *** 181,187 **** :E You must specify the root partition :T Debe indicar una partición raíz - !E_IVLSECTOR - :E Invalid partition or device for boot sector\ninstallation - :T La partición o el dispositivo de arranque\nno son válidos !T_ACTLILO :E Activating LILO configuration --- 190,193 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/dhcpd.dic linuxconf-1.15/messages/es/dhcpd.dic *** linuxconf-1.14r4/messages/es/dhcpd.dic Fri Feb 19 19:04:36 1999 --- linuxconf-1.15/messages/es/dhcpd.dic Wed Mar 31 13:53:07 1999 *************** *** 1,8 **** @version 0 - # *** updated message - !E_USAGE - :Z Linuxconf module dhcpd\n\n--updatedns\n - :T Módulo dhcpd\n\n --updatedns\n - :E module dhcpd\n\n --updatedns\n !E_NOMATCH :T Esta subred no está asociada con ningún\n --- 1,3 ---- *************** *** 12,19 **** +en alguna otra red por un relay dhcp :E This subnet is not associated with any\n ! +network adaptor (basic host information)\n ! +.This means that IP numbers in this subnet\n +will only by allocated to some other network\n +using a dhcp relay to this dhcpd server !F_UPDDNS :T Actualiza el DNS --- 7,17 ---- +en alguna otra red por un relay dhcp :E This subnet is not associated with any\n ! +network adaptor (basic host information).\n ! +This means that IP numbers in this subnet\n +will only by allocated to some other network\n +using a dhcp relay to this dhcpd server + !E_USAGE + :T Módulo dhcpd\n\n --updatedns\n + :E module dhcpd\n\n --updatedns\n !F_UPDDNS :T Actualiza el DNS diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/dialog.dic linuxconf-1.15/messages/es/dialog.dic *** linuxconf-1.14r4/messages/es/dialog.dic Sat Feb 20 14:07:06 1999 --- linuxconf-1.15/messages/es/dialog.dic Wed Mar 31 13:53:07 1999 *************** *** 1,3 **** --- 1,6 ---- @version 0 + !E_NOHELPFILE + :T El archivo de ayuda %s aún no ha sido escrito + :E Help file %s not yet written !I_SELECT :T \nSeleccione [%s] para %s %s *************** *** 75,81 **** :T El campo no puede estar vacío :E This field may not be empty - !E_NOHELPFILE - :T Falta el archivo de ayuda %s - :E Missing help file %s !E_NOPT :T No se permiten puntos decimales --- 78,81 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/dnsconf.dic linuxconf-1.15/messages/es/dnsconf.dic *** linuxconf-1.14r4/messages/es/dnsconf.dic Sat Feb 20 14:47:43 1999 --- linuxconf-1.15/messages/es/dnsconf.dic Wed Apr 7 14:24:47 1999 *************** *** 1,12 **** @version 0 ! !I_NORECURSE ! :T ! :E ! !I_NOFETCHGLUE ! :T ! :E !N_DNSUSAGE :T Módulo dnsconf\n +\n + --newdomain dominio [ dominio_ejemplo ]\n + --set máquina número_ip [número_ip ...]\n --- 1,126 ---- @version 0 ! !F_NOTIFY ! :T Notificar ! :E Notify ! !F_NICKNAME ! :T como alias de (CNAME) ! :E nick name for (CNAME) ! !F_IPADRS ! :T Dirs. IP ! :E IP addrs. ! !F_DNSADV ! :T Servidores de nombres (NS) ! :E Name servers (NS) ! !F_EMAILADV ! :T Servidores de mail (MX) ! :E Mail servers (MX) ! !F_ALLOWTRANS ! :T Permitir transferencias a ! :E Allow transfer to ! !F_ALLOWQUERY ! :T Permitir consulta desde ! :E Allow query from ! !F_LISTENON ! :T Atiende en ! :E Listen on ! !T_ACCESS ! :T Control de acceso ! :E Access control ! !F_ALLOWUPDATE ! :T Permite actualizaciones desde ! :E Allow update from ! !F_ALSONOTIFY ! :T También notifica ! :E Also notify ! !H_ACLS ! :T Nombres de ACL ! :E Acl names ! !I_ADDMATCH ! :T Seleccione [Agregar] para un nuevo acceso ! :E Select [Add] to add a new access pattern ! !T_ACL ! :T Lista de control de acceso %s ! :E Access control list %s ! !I_ADDACL ! :T Seleccione [Agregar] para una lista de\ncontrol de acceso nueva ! :E Select [Add] to add a new access control list ! !T_ACLS ! :T Listas de control de acceso ! :E Access control lists ! !M_ACL ! :T Listas de control de acceso ! :E Access control lists ! !M_LOGGING ! :T Logging ! :E Logging ! !H_ACL ! :T Máquina/Red/Acl\tnetmask (cant. de bits) ! :E Host/Network/Acl\tNet size ! !I_DELACL ! :T Seleccione [borrar] para eliminarlo ! :E Select [Del] to delete this ! !M_SECURITY ! :T Seguridad ! :E Security ! !F_NETHOSTACL ! :T Red, máquina o ACL ! :E Network, Host or ACL ! !F_NETSIZE ! :T Tipo de red (/xx) ! :E Network type (/xx) ! !I_DELADDR ! :T Seleccione [borrar] para eliminar la entrada ! :E Select [Del] to delete this entry ! !T_ADDRMATCH ! :T Coincidencia de una dirección ! :E One address match ! !I_ADDRMATCH ! :T Debe ingresar una de las siguientes combinaciones\n ! + El número IP de una máquina\n ! + Un número IP y la cantidad de bits significativos\n ! + (16 para una red clase B, 24 para una red clase C)\n ! + Un nombre de otra ACL\n ! :E You must enter here one of the following combination\n ! + One host IP number\n ! + A network IP number and a number of signigficative bits\n ! + (16 for a class B, 24 for a class C network)\n ! + One ACL name\n ! !E_HOSTIP ! :T Debe ingresar un número IP de una máquina aquí ! :E You must enter a host IP number here ! !E_IVLDACL ! :T %s no es un nombre de ACL válido ! :E %s is not valid ACL name ! !E_NETWORKIP ! :T Debe ingresar un número IP de una red aquí ! :E You must enter a network IP number here ! !E_NETSIZE ! :T Debe indicar un número entre\n1 y 32 ! :E You must provide a number between\n1 and 32 ! !M_ACCESS ! :T Control de acceso ! :E Access control ! !T_DNSACCESS ! :T Control de acceso general ! :E General access control ! !B_EDITNAME ! :T Edita nombre de acl ! :E Edit acl name ! !T_ACLNAME ! :T Nombre del Acl ! :E Acl name ! !I_ACLNAME ! :T Ingrese el nombre del Acl que será\nusada para control de acceso ! :E Enter the name of the acl which will be\nused in access control ! !E_NOSPACE ! :T Debe usar una sola palabra.\n¡Sin espacios! ! :E You must enter a single word.\nNo space allowed! ! !F_ACLNAME ! :T Nombre ! :E Name !N_DNSUSAGE :T Módulo dnsconf\n +\n + + --deldomain dominio\n + --newdomain dominio [ dominio_ejemplo ]\n + --set máquina número_ip [número_ip ...]\n *************** *** 21,24 **** --- 135,139 ---- :E Module dnsconf\n +\n + + --deldomain domain\n + --newdomain domain [ template_domain ]\n + --set host ip_number [ip_number ...]\n *************** *** 31,34 **** --- 146,158 ---- +\n + without argument start the interactive mode\n + !E_SETHOSTPART + :T No puedo poner la parte del host para\nun registro de tipo %d\n + :E Can't set host part for record type %d\n + !I_NORECURSE + :T + :E + !I_NOFETCHGLUE + :T + :E !I_ADDPRIM :T Seleccione [Agregar] para especificar un primario nuevo *************** *** 100,115 **** :E host or sub-domain :T máquina o sub-dominio - !F_NICKNAME - :E is a nick name for - :T como alias de - !F_IPADRS - :E IP addresses - :T Direcciones IP - !F_DNSADV - :E DNS advertising(NS) - :T Anuncios de DNS (NS) - !F_EMAILADV - :E EMAIL advertising(MX) - :T Anuncios de email (MX) !T_HOSTINFO :E Host information --- 224,227 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/fstab.dic linuxconf-1.15/messages/es/fstab.dic *** linuxconf-1.14r4/messages/es/fstab.dic Fri Feb 19 19:19:59 1999 --- linuxconf-1.15/messages/es/fstab.dic Wed Mar 31 13:53:07 1999 *************** *** 1,3 **** --- 1,6 ---- @version 0 + !F_NOLOCKMNT + :T Montaje nolock + :E Nolock mount !I_ADDDEF :T Seleccione [Agregar] para una definición nueva diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/inittab.dic linuxconf-1.15/messages/es/inittab.dic *** linuxconf-1.14r4/messages/es/inittab.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/es/inittab.dic Wed Apr 7 14:28:15 1999 *************** *** 0 **** --- 1,16 ---- + @version 0 + !M_inittab + :T Servicios al inicio del sistema + :E Initial system services + !T_USAGE + :T Módulo inittab\n\n --setdefaultlevel nivel_de_corrida\n + :E Module inittab\n\n --setdefaultlevel default_runlevel\n + !F_DEFAULTLEVEL + :T Nivel de corrida por defecto + :E Default runlevel + !T_DEFLEVEL + :T Nivel de corrida por defecto de init + :E Init default runlevel + !F_RUNLEVEL + :T Nivel de corrida %d + :E Run level %d diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/mailconf.dic linuxconf-1.15/messages/es/mailconf.dic *** linuxconf-1.14r4/messages/es/mailconf.dic Sat Feb 20 14:11:01 1999 --- linuxconf-1.15/messages/es/mailconf.dic Wed Apr 7 14:25:24 1999 *************** *** 2,6 **** !I_NEWALIAS :T Seleccione [Agregar] para un nuevo alias ! :E Select [Add] to add a new aliase !I_ADDONE :T Seleccione [Agregar] para una nueva ruta --- 2,31 ---- !I_NEWALIAS :T Seleccione [Agregar] para un nuevo alias ! :E Select [Add] to add a new alias ! !IEDITALIASES ! :T Puede editar/agregar/borrar\nalias para correo electrónico ! :E You are allowed to edit/add/delete\nsystem wide aliases for electronic mail ! !H_MALIASES ! :T Alias ! :E Aliases ! !I_USAGE ! :T Módulo mailconf\n ! +\n ! + --help\n ! + --addvdom dominio [--startuid uid ] [--daliases alias_de_domino ]\n ! + [--faliase archivo_de_alias_de_correo] [ --quota máx_kbytes ] \n ! + --delvdom dominio\n ! :E Module mailconf\n ! +\n ! + --help\n ! + --addvdom domain [--startuid uid ] [--daliases domain_alias ]\n ! + [--faliase email_aliase_file] [ --quota max_inbox_k] \n ! + --delvdom domain\n ! !F_QUOTA ! :T Tamaño máximo (kb) ! :E Limit user inbox to (k) ! !T_ADDMASQ ! :T Seleccione [Agregar] para una regla de enmascarado nueva ! :E Select [Add] to define a new masquerading rule !I_ADDONE :T Seleccione [Agregar] para una nueva ruta *************** *** 18,24 **** :T Seleccione [Agregar] para un nuevo dominio virtual :E Select [Add] to add one virtual domain - !T_ADDMASQ - :T Seleccione [Agregar] para una regla de enmascarado nueva - :E Select[Add] to define a new masquerading rule !M_ADDZONE :T Seleccione [Agregar] para una nueva zona de fax --- 43,46 ---- *************** *** 30,46 **** :T Seleccione [Agregar] para una entrada nueva :E Select [Add] to add a new entry - !I_USAGE - :T Módulo mailconf Linuxconf\n - +\n - + --help\n - + --addvdom dominio [--startuid uid ] [--daliases alias_de_domino ]\n - + [--faliase archivo_de_alias_de_correo]\n - + --delvdom dominio\n - :E Module mailconf\n - +\n - + --help\n - + --addvdom domain [--startuid uid ] [--daliases domain_alias ]\n - + [--faliase email_aliase_file]\n - + --delvdom domain\n !F_REDIR :T Redirigir mensajes a --- 52,55 ---- *************** *** 86,92 **** :E Edit global mail aliases :T Editar alias de correo globales - !IEDITALIASES - :E You are allowed to edit/add/deleted\nsystem wide aliases for electronic mail - :T Puede editar/agregar/borrar\nalias para correo electrónico !P_WRITE :E write %s --- 95,98 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/main.dic linuxconf-1.15/messages/es/main.dic *** linuxconf-1.14r4/messages/es/main.dic Sat Feb 20 14:31:57 1999 --- linuxconf-1.15/messages/es/main.dic Wed Mar 31 13:53:08 1999 *************** *** 1,3 **** --- 1,12 ---- @version 0 + !N_BUILDTREE + :T Linuxconf va a recalcular su árbol de menúes.\n + +Esto puede demorar unos segundos.\n + +Linuxconf hace esto porque Ud. lo ha actualizado o\n + +porque instaló un nuevo módulo. + :E Linuxconf will now compute its menu tree.\n + +This may take a few seconds.\n + +Linuxconf does this either because you have upgraded linuxconf\n + +itself or because you have installed a new module. !E_NOMISCSERV :T No hay servicios registrados *************** *** 345,355 **** :E --setmod and --unsetmod may only be done by root\n :T --setmod y --unsetmod sólo puede hacerlos root\n - !N_BUILDTREE - :E Linuxconf will now compute its menu tree.\n - +This may take few seconds.\n - +Linuxconf does this either because you have upgraded linuxconf\n - +itself or because you have installed a new module. - :T Linuxconf va a recalcular su árbol de menúes.\n - +Esto puede demorar unos segundos.\n - +Linuxconf hace esto porque Ud. lo ha actualizado o\n - +porque instaló un nuevo módulo. --- 354,355 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/netconf.dic linuxconf-1.15/messages/es/netconf.dic *** linuxconf-1.14r4/messages/es/netconf.dic Sat Feb 20 14:35:14 1999 --- linuxconf-1.15/messages/es/netconf.dic Wed Mar 31 13:53:08 1999 *************** *** 1,22 **** @version 0 ! !F_ADDONE ! :T Seleccione [Agregar] para una definición nueva ! :E Select [Add] to add a new definition ! !I_TOADDROUTE ! :T Seleccione [Agregar] para una ruta nueva ! :E Select [Add] to add a new route ! !I_ADDDEF ! :T Seleccione [Agregar] para una definición nueva ! :E Select [Add] to add a new definition ! !F_EMPTYSLOT ! :T Seleccione [Agregar] para entradas vacías al final del diálogo ! :E Select [Add] to add empty slots at the end of the dialog ! !I_ADDDROPIN ! :T Seleccione [Agregar] para una nueva definición de dropin ! :E Select [Add] to add a new dropin definition !I_USAGE :T opciones de línea de comando de netconf\n +\n ! + --bootrc directorio_rc [ directorio_rc_anterior]\n + --connect sitio [--fore]\n + --dialctl\n --- 1,10 ---- @version 0 ! !H_DAEMONS ! :T Nombre\tRuta\tMód. ! :E Name\tPath\tMod. !I_USAGE :T opciones de línea de comando de netconf\n +\n ! + --bootrc directorio_rc [ directorio_rc_anterior ]\n + --connect sitio [--fore]\n + --dialctl\n *************** *** 39,43 **** :E netconf command line options\n +\n ! + --bootrc rc_dir_path [ previous_rc_dir_path]\n + --connect site [--fore]\n + --dialctl\n --- 27,31 ---- :E netconf command line options\n +\n ! + --bootrc rc_dir_path [ previous_rc_dir_path ]\n + --connect site [--fore]\n + --dialctl\n *************** *** 58,61 **** --- 46,67 ---- + --status\n + --update\n + !I_MISC + :T Tareas misceláneas + :E Miscellaneous task + !F_ADDONE + :T Seleccione [Agregar] para una definición nueva + :E Select [Add] to add a new definition + !I_TOADDROUTE + :T Seleccione [Agregar] para una ruta nueva + :E Select [Add] to add a new route + !I_ADDDEF + :T Seleccione [Agregar] para una definición nueva + :E Select [Add] to add a new definition + !F_EMPTYSLOT + :T Seleccione [Agregar] para entradas vacías al final del diálogo + :E Select [Add] to add empty slots at the end of the dialog + !I_ADDDROPIN + :T Seleccione [Agregar] para una nueva definición de dropin + :E Select [Add] to add a new dropin definition !T_IPALIASFORDEV :T Alias IP para el dispositivo %s *************** *** 1605,1611 **** :E Updating user account :T Actualizando cuenta de usuario - !H_DAEMONS - :E Mod.\tName\tPath - :T Mód.\tNombre\nRuta !H_NETDEV :E Network device --- 1611,1614 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/pppdialin.dic linuxconf-1.15/messages/es/pppdialin.dic *** linuxconf-1.14r4/messages/es/pppdialin.dic Fri Feb 19 19:46:26 1999 --- linuxconf-1.15/messages/es/pppdialin.dic Wed Mar 31 13:53:08 1999 *************** *** 1,3 **** --- 1,33 ---- @version 0 + !T_MODIPUP + :T Modifica ip-up/ip-down + :E Modify ip-up/ip-down + !I_MODIPUP + :T Los archivos /etc/ppp/ip-up y /etc/ppp/ip-down\n + +deben ser modificados para soportar el módulo pppdialin\n + +\n + +Se agregarán las siguientes líneas respectivamente\n + +a cada archivo:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +¿Desea hacerlo? + :E The files /etc/ppp/ip-up and /etc/ppp/ip-down\n + +must be modified to support the pppdialin module\n + +\n + +The following lines must be added respectivly to\n + +each file:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Do you want to do it ? + !F_OURIP + :T Número IP local + :E Local IP number + !F_PROXYARP + :T Proxy Arp (Simular el remoto como local) + :E Proxy Arp (fake remote on local net) !T_USAGE :T Módulo pppdialin\n\n Sin opciones\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/samba.dic linuxconf-1.15/messages/es/samba.dic *** linuxconf-1.14r4/messages/es/samba.dic Fri Feb 19 20:03:29 1999 --- linuxconf-1.15/messages/es/samba.dic Wed Mar 31 13:53:08 1999 *************** *** 1,3 **** --- 1,6 ---- @version 0 + !T_SHARES + :T Recurso de disco + :E Disk shares !I_NEWSHARE :T Seleccione [Agregar] para un recurso nuevo *************** *** 27,33 **** :T Recurso\tDescripción :E Share name\tDescription - !T_SHARES - :T Recurso de disco - :E DIsk shares !I_SHARES :T Puede definir múltiples entradas\nindependientes en su servidor de archivos --- 30,33 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/status.dic linuxconf-1.15/messages/es/status.dic *** linuxconf-1.14r4/messages/es/status.dic Fri Dec 11 19:13:46 1998 --- linuxconf-1.15/messages/es/status.dic Wed Apr 7 14:25:45 1999 *************** *** 1,3 **** --- 1,9 ---- @version 0 + !M_MD + :T Uso de RAID (MD) + :E RAID (MD) usage + !E_NOTDONE + :T ¡Todavía no está hecho! + :E Not done yet! !M_INTERRUPTS :E interrupts mapping diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/es/userconf.dic linuxconf-1.15/messages/es/userconf.dic *** linuxconf-1.14r4/messages/es/userconf.dic Sat Feb 20 14:46:44 1999 --- linuxconf-1.15/messages/es/userconf.dic Thu Apr 8 06:57:56 1999 *************** *** 1,3 **** --- 1,15 ---- @version 0 + !F_DONOTHING + :T No hago nada + :E Do nothing + !F_CHOWNDIR + :T Cambio el dueño del directorio + :E Change ownership of the directory + !T_FIXHOME + :T Arreglando el directorio home + :E Fixing home directory + !F_CHOWNRECUR + :T Cambio el dueño recursivamente + :E Change ownership recursivly !I_TOADD :T Seleccione [Agregar] para una definición nueva *************** *** 135,139 **** !E_IVLDPASS :E Invalid password ! :T Calve incorrecta !E_MUSTBEROOT :E You must be root to\n%s --- 147,151 ---- !E_IVLDPASS :E Invalid password ! :T Clave incorrecta !E_MUSTBEROOT :E You must be root to\n%s diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/askrunlevel.dic linuxconf-1.15/messages/fr/askrunlevel.dic *** linuxconf-1.14r4/messages/fr/askrunlevel.dic Sun Jan 10 19:18:59 1999 --- linuxconf-1.15/messages/fr/askrunlevel.dic Fri Apr 9 15:43:24 1999 *************** *** 1,3 **** --- 1,10 ---- @version 0 + !E_IVLSECTOR + :T partition ou périphérique inhabituelle\n + +pour une installation du secteur de démarrage\n + +cela va surement conduire à un système non bootable. + :E Unusual partition or device for boot sector\n + +installation. This will probably yield a non\n + +bootable system. !I_PROMPT :T Présenter le prompt LILO boot: *************** *** 277,283 **** :E You must specify the root partition :T Vous devez spécifier la partition racine - !E_IVLSECTOR - :E Invalid partition or device for boot sector\ninstallation - :T partition ou périphérique incorrect\npour installation du secteur de démarrage !T_LILOCONF :E LInux LOader configuration --- 284,287 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/dialog.dic linuxconf-1.15/messages/fr/dialog.dic *** linuxconf-1.14r4/messages/fr/dialog.dic Sun Jan 10 19:19:24 1999 --- linuxconf-1.15/messages/fr/dialog.dic Fri Apr 9 15:43:56 1999 *************** *** 1,3 **** --- 1,6 ---- @version 0 + !E_NOHELPFILE + :T Le fichier d'aide %s n'est pas encore écrit + :E Help file %s not yet written !X_HELP :E Help *************** *** 156,162 **** :E This field may not be empty :T Ce champs ne peut être vide - !E_NOHELPFILE - :E Missing help file %s - :T Le fichier d'aide %s est manquant !E_NOPT :E No decimal point allowed --- 159,162 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/dnsconf.dic linuxconf-1.15/messages/fr/dnsconf.dic *** linuxconf-1.14r4/messages/fr/dnsconf.dic Fri Mar 12 20:52:16 1999 --- linuxconf-1.15/messages/fr/dnsconf.dic Fri Apr 9 19:21:51 1999 *************** *** 1,3 **** --- 1,131 ---- @version 0 + !F_DNSADV + :T serveurs de noms(NS) + :E Name servers (NS) + !F_EMAILADV + :T serveurs de mail(MX) + :E Mail servers (MX) + !F_NICKNAME + :T alias pour (CNAME) + :E nick name for (CNAME) + !F_IPADRS + :T adrs. IP + :E IP addrs. + !F_ALLOWTRANS + :E Allow transfer to + :T Autoriser les transferts vers + !F_ALLOWQUERY + :E Allow query from + :T Autoriser les requêtes de + !F_LISTENON + :E Listen on + :T Ecouter sur + !T_ACCESS + :E Access control + :T Contrôle d'accès + !F_ALLOWUPDATE + :E Allow update from + :T Autoriser les mises à jour depuis + !F_ALSONOTIFY + :E Also notify + :T Notifier aussi + !H_ACLS + :E Acl names + :T Noms des acl + !I_ADDMATCH + :E Select [Add] to add a new access pattern + :T Sélectionnez [Ajouter] pour ajouter une nouvelle forme d'accès + !T_ACL + :E Access control list %s + :T Liste de contrôle d'accès %s + !I_ADDACL + :E Select [Add] to add a new access control list + :T Sélectionner [Ajouter] pour ajouter une nouvelle liste de contrôle d'accès + !T_ACLS + :E Access control lists + :T Listes de contrôle d'accès + !M_ACL + :E Access control lists + :T Listes de contrôle d'accès + !M_LOGGING + :E Logging + :T Logging + !H_ACL + :E Host/Network/Acl\tNet size + :T Machine/Réseau/Acl\tTaille du réseau + !I_DELACL + :E Select [Del] to delete this + :T Sélectionnez [Effacer] pour effacer ceci + !M_SECURITY + :E Security + :T Sécurité + !F_NETHOSTACL + :E Network, Host or ACL + :T Réseau, Machine ou ACL + !F_NETSIZE + :E Network type (/xx) + :T Type de réseau (/xx) + !I_DELADDR + :E Select [Del] to delete this entry + :T Sélectionnez [Effacer] pour effacer cette entrée + !T_ADDRMATCH + :E One address match + :T Une correspondance d'adresse + !I_ADDRMATCH + :E You must enter here one of the following combination\n + + One host IP number\n + + A network IP number and a number of signigficative bits\n + + (16 for a class B, 24 for a class C network)\n + + One ACL name\n + :T Vous devez entrer ici une des combinaisons suivantes\n + + Une adresse IP de machine\n + + Une adresse IP de réseau et un nombre de bits significatifs\n + + (16 pour une classe B, 24 pour une classe C)\n + + Un nom d'ACL\n + !E_HOSTIP + :E You must enter a host IP number here + :T Vous devez entrer une adresse IP de machine ici + !E_IVLDACL + :E %s is not valid ACL name + :T %s n'est pas un nom d'ACL valide + !E_NETWORKIP + :E You must enter a network IP number here + :T Vous devez entrer une adresse IP de réseau ici + !E_NETSIZE + :E You must provide a number between\n1 and 32 + :T Vous devez fournir un nombre entre 1 et 32 + !M_ACCESS + :E Access control + :T Contrôle d'accès + !T_DNSACCESS + :E General access control + :T Contrôle d'accès général + !B_EDITNAME + :E Edit acl name + :T Editer un nom d'acl + !T_ACLNAME + :E Acl name + :T Nom d'acl + !I_ACLNAME + :E Enter the name of the acl which will be\nused in access control + :T Entrer le nom de l'acl qui sera\nutilisé pour le contrôle d'accès + !E_NOSPACE + :E You must enter a single word.\nNo space allowed! + :T Vous devez enteer un seul mot.\nEspace interdit ! + !F_ACLNAME + :E Name + :T Nom + !F_NOTIFY + :E Notify + :T Notification + !I_NO + :E No + :T Non + !I_YES + :E Yes + :T Oui + !I_DEFAULT + :E Default + :T Défaut !N_DNSUSAGE :T Modules dnsconf\n *************** *** 112,121 **** :E DNS server :T Serveur DNS - !F_DNSADV - :T annonce du DNS(NS) - :E DNS advertising(NS) - !F_EMAILADV - :T serveur EMAIL associé(MX) - :E EMAIL advertising(MX) !I_MISSCACHE :T Le fichier %s n'est pas installé sur votre système\n --- 240,243 ---- *************** *** 275,284 **** :E host or sub-domain :T machine ou sous-domaine - !F_NICKNAME - :E is a nick name for - :T est un alias pour - !F_IPADRS - :E IP addresses - :T adresses IP !T_HOSTINFO :E Host information --- 397,400 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/inittab.dic linuxconf-1.15/messages/fr/inittab.dic *** linuxconf-1.14r4/messages/fr/inittab.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/fr/inittab.dic Fri Apr 9 19:33:51 1999 *************** *** 0 **** --- 1,16 ---- + @version 0 + !M_inittab + :E Initial system services + :T Services à l'inititialisation du système + !T_USAGE + :E Module inittab\n\n --setdefaultlevel default_runlevel\n + :T Module inittab\n\n --setdefaultlevel default_runlevel\n + !F_DEFAULTLEVEL + :E Default runlevel + :T Niveau de démarrage par défaut + !T_DEFLEVEL + :E Init default runlevel + :T Niveau de démarrage par défaut d'init + !F_RUNLEVEL + :E Run level %d + :T Niveau de démarrage %d diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/mailconf.dic linuxconf-1.15/messages/fr/mailconf.dic *** linuxconf-1.14r4/messages/fr/mailconf.dic Fri Mar 12 20:50:27 1999 --- linuxconf-1.15/messages/fr/mailconf.dic Fri Apr 9 19:35:00 1999 *************** *** 1,3 **** --- 1,13 ---- @version 0 + !I_NEWALIAS + :T Sélectionnez [Ajouter] pour ajouter un nouvel alias + :E Select [Add] to add a new alias + !IEDITALIASES + :T Vous êtes autorisé à éditer/ajouter/effacer\n + +les alias systèmes pour le courrier électronique. + :E You are allowed to edit/add/delete\nsystem wide aliases for electronic mail + !H_MALIASES + :E Aliases + :T Alias !I_USAGE :T Module mailconf\n *************** *** 19,25 **** :E Limit user inbox to (k) :T Limiter la boite aux lettres de l'utilisateur à (k) - !I_NEWALIAS - :T Sélectionnez [Ajouter] pour ajouter de nouveaux alias - :E Select [Add] to add a new aliase !I_ADDENTRY :T Sélectionnez [Ajouter] pour ajouter une nouvelle entrée --- 29,32 ---- *************** *** 439,446 **** :E Edit global mail aliases :T Editer les alias de messagerie globaux - !IEDITALIASES - :E You are allowed to edit/add/deleted\nsystem wide aliases for electronic mail - :T Vous êtes autorisé à éditer/ajouter/effacer\n - +les alias systèmes pour le courrier électronique. !P_WRITE :E write %s --- 446,449 ---- *************** *** 701,707 **** !M_VALIASES :E virtual domain user aliases ! :T alias d\'utilisateur pour ce domaine virtuel !T_SELALIAS :E Alias files for domain %s !I_SELALIAS :E This virtual email domain has several alias file\npick the one to edit --- 704,711 ---- !M_VALIASES :E virtual domain user aliases ! :T alias d\'utilisateur pour un domaine virtuel !T_SELALIAS :E Alias files for domain %s + :T Fichiers d'alias pour le domaine %s !I_SELALIAS :E This virtual email domain has several alias file\npick the one to edit diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/main.dic linuxconf-1.15/messages/fr/main.dic *** linuxconf-1.14r4/messages/fr/main.dic Mon Jan 11 19:20:58 1999 --- linuxconf-1.15/messages/fr/main.dic Fri Apr 9 19:23:59 1999 *************** *** 1,3 **** --- 1,12 ---- @version 0 + !N_BUILDTREE + :T Linuxconf va maintenant calculer la nouvel arborescence du menu.\n + +Cela peut prendre plusieurs secondes.\n + +Linuxconf fait cela soit parce que vous avez upgradé Linuxconf\n + +soit parce que vous avez installé un nouveau module. + :E Linuxconf will now compute its menu tree.\n + +This may take a few seconds.\n + +Linuxconf does this either because you have upgraded linuxconf\n + +itself or because you have installed a new module. !E_NOMISCSERV :E No misc services registered *************** *** 81,93 **** :T Configurer les permissions et appartenances des fichiers :E Configure file permission and ownership - !N_BUILDTREE - :E Linuxconf will now compute its menu tree.\n - +This may take few seconds.\n - +Linuxconf does this either because you have upgraded linuxconf\n - +itself or because you have installed a new module. - :T Linuxconf va maintenant calculer la nouvel arborescence du menu.\n - +Cela peut prendre plusieurs secondes.\n - +Linuxconf fait cela soit parce que vous avez upgradé Linuxconf\n - +soit parce que vous avez installé un nouveau module. !F_PREFIXTRIG :E Trigger for filter --- 90,93 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/pppdialin.dic linuxconf-1.15/messages/fr/pppdialin.dic *** linuxconf-1.14r4/messages/fr/pppdialin.dic Fri Mar 12 20:42:55 1999 --- linuxconf-1.15/messages/fr/pppdialin.dic Fri Apr 9 19:29:44 1999 *************** *** 1,3 **** --- 1,27 ---- @version 0 + !T_MODIPUP + :E Modify ip-up/ip-down + :T Modifier ip-up/ip-down + !I_MODIPUP + :E The files /etc/ppp/ip-up and /etc/ppp/ip-down\n + +must be modified to support the pppdialin module\n + +\n + +The following lines must be added respectivly to\n + +each file:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Do you want to do it ? + :T Les fichiers /etc/ppp/ip-up et /etc/ppp/ip-down\n + +doivent être modifés pour supporter le module pppdialin\n + +\n + +Les lignes suivantes doivent être ajoutées respectivement\n + +à chaque fichier:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Voulez-vous faire cela ? !F_OURIP :E Local IP number diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/status.dic linuxconf-1.15/messages/fr/status.dic *** linuxconf-1.14r4/messages/fr/status.dic Fri Mar 12 20:42:39 1999 --- linuxconf-1.15/messages/fr/status.dic Fri Apr 9 19:31:03 1999 *************** *** 1,3 **** --- 1,12 ---- @version 0 + !M_MD + :E RAID (MD) usage + :T utilisation du RAID(MD) + !M_SCSI + :E scsi devices + :T périphériques scsi + !M_PCI + :E PCI devices + :T périphériques PCI !E_NOTDONE :E Not done yet! diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/fr/userconf.dic linuxconf-1.15/messages/fr/userconf.dic *** linuxconf-1.14r4/messages/fr/userconf.dic Mon Jan 11 19:08:22 1999 --- linuxconf-1.15/messages/fr/userconf.dic Fri Apr 9 19:25:34 1999 *************** *** 1,3 **** --- 1,15 ---- @version 0 + !F_DONOTHING + :E Do nothing + :T Ne rien faire + !F_CHOWNDIR + :E Change ownership of the directory + :T Changer le propriétaire du répertoire + !T_FIXHOME + :E Fixing home directory + :T Réparer le répertoire "maison" + !F_CHOWNRECUR + :E Change ownership recursivly + :T Changer le propriétaire récursivement !I_TOADD :T Sélectionnez [Ajouter] pour ajouter une nouvelle définition Binary files linuxconf-1.14r4/messages/se/.dnsconf.dic.swp and linuxconf-1.15/messages/se/.dnsconf.dic.swp differ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/ORDLISTA linuxconf-1.15/messages/se/ORDLISTA *** linuxconf-1.14r4/messages/se/ORDLISTA Thu Mar 11 15:27:39 1999 --- linuxconf-1.15/messages/se/ORDLISTA Thu Apr 15 17:41:33 1999 *************** *** 1,7 **** ! Linuxistisk engelsk-svensk ordlista Version:990311 ----------------------------------- -------------- ! Föregående: 990120 Alla som översätter har säkert en uppfattning om vilken översättning som --- 1,7 ---- ! Linuxistisk engelsk-svensk ordlista Version:990416 ----------------------------------- -------------- ! Föregående: 990314 Alla som översätter har säkert en uppfattning om vilken översättning som *************** *** 46,76 **** Föreslagna Förslag från ---------- ------------ ! daemon :demon (lå) ! command line option :kommandoalternativ (tg) ! configuration file :inställningsfil,anpassningsfil (tg) (omvänd ordning) ! cookie server :cookie-server (kotten82@telia.com) ! desktop :skrivbord (tg) ! dhcp server :ip-adress-server (dhcp) (tg) ! DOS drive letter :DOS enhetsbokstav (tg) ! group quota :gruppbegränsning (tg) ! key bindings :tangentbordsfunktioner (tg) ! mail :post (tg) ! option :val,alternativ,växel (tg) ! privileged program :privilegierat program (tg) ! quota :utrymmesbegränsning(?) (tg) ! remote file system :avlägsna filsystem (tg) ! run level,runlevel :operationsläge(?) (tg) ! selection list :urvalslista (tg) ! setgid program :gruppfixerat program (tg) ! setuid program :användarfixerat program (tg) ! super user :superanvändare(?) (tg) ! user account :användarkonto (tg) ! user quota :användarbegränsning (tg) -------------------------------------------------------------------------------- ! Nyinlagda Förslag från ! ---------- ------------ ! boot record :bootsektor (kotten82@telia.com,tg) ! dhcp :flytande ip-adress (dhcp) (mj,tg) -------------------------------------------------------------------------------- --- 46,77 ---- Föreslagna Förslag från ---------- ------------ ! kill :tvångsavsluta (ig) ! kill :avbryta (tg) ! mail box :brevlåda (tg) ! maintenance :underhåll (tg) ! remote file system :nätverksfilsystem (ig) -------------------------------------------------------------------------------- ! Nyinlagda ! ---------- ! configuration file :inställningsfil,anpassningsfil ! command line option :kommandoradsalternativ ! cookie server :cookie-server ! daemon :demon ! dhcp server :ip-adress-server (dhcp) ! disk quota :diskgränsvärde,diskkvot ! DOS drive letter :DOS-enhetsbokstav ! key bindings :tangentbindningar ! mail :post ! option :val,alternativ ! privileged program :privilegierat program ! quota :gränsvärde,kvot ! remote file system :icke lokalt filsystem ! run level,runlevel :operationsläge(?),körnivå(?) ! setgid program :gruppfixerat program(?) ! setuid program :användarfixerat program(?) ! super user :superanvändare ! uid,userid :användarnummer (endast userid nyinlagt) ! user account :användarkonto -------------------------------------------------------------------------------- *************** *** 79,84 **** Borttagna Förslag från ---------- ------------ ! boot record :boot record (tg) ! command line option :kommandoväxel (tg) -------------------------------------------------------------------------------- --- 80,86 ---- Borttagna Förslag från ---------- ------------ ! group quota :gruppbegränsning (tg) ! option :växel (tg) ! user quota :användarbegränsning (tg) -------------------------------------------------------------------------------- *************** *** 103,106 **** --- 105,109 ---- authencication :verifiering,behörighetskontroll(Datatermgruppen) automounter :automatmontering + backup :säkerhetskopia (Datatermgruppen) boot :uppstart *************** *** 110,121 **** browsable :sökbar(?) (linuxconf: samba) bug fix :programrättelse,rättelse,felrättning cache :buffert client/server :klient-server (Datatermgruppen) cluster :datorgrupp (linuxconf: netadm) configuration :inställning,konfiguration ! configuration file :anpassningsfil,inställningsfil configure :anpassa, ställa in ! cookie server :kak-server ! daemon :bakgrundsrutin debug level :felsökningsnivå default :grund,standard --- 113,127 ---- browsable :sökbar(?) (linuxconf: samba) bug fix :programrättelse,rättelse,felrättning + cache :buffert client/server :klient-server (Datatermgruppen) cluster :datorgrupp (linuxconf: netadm) + command line option :kommandoalternativ,kommandoradsalternativ configuration :inställning,konfiguration ! configuration file :inställningsfil,anpassningsfil configure :anpassa, ställa in ! cookie server :kak-server,cookie-server ! ! daemon :bakgrundsrutin,demon debug level :felsökningsnivå default :grund,standard *************** *** 125,129 **** default value :förvalt värde,förinställt värde(Datatermgruppen) default value :skönsvärde,standardvärde ! dhcp :flytande ip-adress (dhcp) (mj,tg) directive :anvisning directory :katalog --- 131,137 ---- default value :förvalt värde,förinställt värde(Datatermgruppen) default value :skönsvärde,standardvärde ! desktop :skrivbord ! dhcp :flytande ip-adress (dhcp) ! dhcp server :ip-adress-server (dhcp) directive :anvisning directory :katalog *************** *** 131,138 **** --- 139,150 ---- disk cache memory :diskminne(?) disk image :diskavbild + disk quota :diskgränsvärde,diskkvot + DOS drive letter :DOS-enhetsbokstav dropin :paket (linuxconf: netconf) + email :e-post,e-brev (Datatermgruppen) email :post,epost,e-post,datorpost export :delas (linuxconf: samba) + feature :egenskap,finess file and printer share :fil- och skrivardelning (W95) *************** *** 142,149 **** --- 154,164 ---- forward :delegering (linuxconf: DNS) forward :eftersändning (linuxconf: brandvägg, sendmail) + gateway :utgång graphical user interface:grafiskt gränssnitt,grafiskt användargränssnitt + host name :värddatornamn hubb :nätnav (Datatermgruppen) + image :avbild interface :enhet,gränssnitt *************** *** 151,156 **** --- 166,175 ---- interrupt request :avbrottsförfrågan (W95) irq :avbrottsförfrågan (W95) + kernel :kärna + key bindings :tangentbordsfunktioner,tangentbindningar keyboard layout :tangentbordslayout (W95) + + mail :post mail gateway :befordringsväg mail server :post-server,postkontor *************** *** 159,168 **** manual :manual mapping :tilldelning (Datatermgruppen) name server :namn-server net mask :nätverksmask netmask :nätverksmask opt,optional :ej obl,ej obligatoriskt ! option :val ! option :växel (MSDOS) package :paket partition :partition (avser diskpartition) --- 178,191 ---- manual :manual mapping :tilldelning (Datatermgruppen) + name server :namn-server net mask :nätverksmask netmask :nätverksmask + opt,optional :ej obl,ej obligatoriskt ! option :val,alternativ ! ! quota :gränsvärde,kvot ! package :paket partition :partition (avser diskpartition) *************** *** 176,185 **** print server :skrivar-server printer :skrivare (Datatermgruppen) probe :detektera,känna av,undersöka proxy :ombud proxy server :ombud-server public access :allmänt tillgänglig ramdisk :ramdisk ! rarp :omvänd adressöversättning ("RARP") reject :avvisa (ex: reject mail) relay :vidarebefordra (linuxconf: mailconf) --- 199,210 ---- print server :skrivar-server printer :skrivare (Datatermgruppen) + privileged program :privilegierat program probe :detektera,känna av,undersöka proxy :ombud proxy server :ombud-server public access :allmänt tillgänglig + ramdisk :ramdisk ! rarp :omvänd adressöversättning (RARP) reject :avvisa (ex: reject mail) relay :vidarebefordra (linuxconf: mailconf) *************** *** 187,190 **** --- 212,216 ---- relay to :eftersända (linuxconf: mailconf) remote administration :fjärradministration + remote file system :icke lokalt filsystem remote hosts :fjärrsystem resolver :namnöversättning *************** *** 194,204 **** --- 220,235 ---- router :router (Datatermgruppen) router daemon :ruttningsrutin(?) + run level,runlevel :operationsläge(?),körnivå(?) + scope :omfång script :skript (Datatermgruppen) scroll :rulla (Datatermgruppen) scrollbar :rullningslist + selection list :urvalslista serv-er :serv-er(-ern,-rar,-rarna) (Datatermgruppen) server :kopia (linuxconf: Apache) server :server + setgid program :gruppfixerat program(?) + setuid program :användarfixerat program(?) setup :inställning share :andel,gemensam,del (linuxconf: samba) *************** *** 213,216 **** --- 244,249 ---- subnet :underordnat nät subsystem :delsystem + super user :superanvändare(?) + task :uppgift,kommando time server :tid-server *************** *** 218,225 **** trusted users :betrodda användare tuning :inställning,trimning,intrimning ! uid :användarnummer user name :användarnamn,användarbeteckning(Datatermgruppen) utilities :systemrutiner virtual :virtuell,tänkt web :webb,väv,www (Datatermgruppen) web browser :webbläsare (Datatermgruppen) --- 251,262 ---- trusted users :betrodda användare tuning :inställning,trimning,intrimning ! ! uid,userid :användarnummer user name :användarnamn,användarbeteckning(Datatermgruppen) + user account :användarkonto utilities :systemrutiner + virtual :virtuell,tänkt + web :webb,väv,www (Datatermgruppen) web browser :webbläsare (Datatermgruppen) diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/README linuxconf-1.15/messages/se/README *** linuxconf-1.14r4/messages/se/README Sat Feb 27 14:50:41 1999 --- linuxconf-1.15/messages/se/README Thu Apr 15 17:41:16 1999 *************** *** 1,5 **** ! Översättning av Linuxconf: 1.13r14 ! Revision: 980227 Översättning av: Torbjörn Gard torbjorn.gard@elektrondata.se --- 1,5 ---- ! Översättning av Linuxconf: 1.14r4 ! Revision: 980416 Översättning av: Torbjörn Gard torbjorn.gard@elektrondata.se diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/apache.dic linuxconf-1.15/messages/se/apache.dic *** linuxconf-1.14r4/messages/se/apache.dic Thu Mar 11 13:38:41 1999 --- linuxconf-1.15/messages/se/apache.dic Sun Mar 21 12:44:31 1999 *************** *** 1,10 **** @version 0 - # *** updated message !I_DIRRULES - :Z You are allowed to enter configurations\n - +whîch apply to this directory and its sub-directories\n - :T Ange de inställningar som gäller för katalogen och\ndess underkataloger. :E You are allowed to enter configurations\n +which apply to this directory and its sub-directories\n !I_NEWDIR :E Select [Add] to add a new directory rule --- 1,7 ---- @version 0 !I_DIRRULES :E You are allowed to enter configurations\n +which apply to this directory and its sub-directories\n + :T Ange de inställningar som gäller för katalogen och\ndess underkataloger. !I_NEWDIR :E Select [Add] to add a new directory rule diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/askrunlevel.dic linuxconf-1.15/messages/se/askrunlevel.dic *** linuxconf-1.14r4/messages/se/askrunlevel.dic Wed Feb 24 18:57:48 1999 --- linuxconf-1.15/messages/se/askrunlevel.dic Tue Apr 13 15:32:49 1999 *************** *** 1,3 **** --- 1,10 ---- @version 0 + !E_IVLSECTOR + :E Unusual partition or device for boot sector\n + +installation. This will probably yield a non\n + +bootable system. + :T Oväntad partition eller enhet för installation\n + +av laddsektor. Detta resulterar antagligen i att\n + +maskinen inte kommer att kunna återstartas. !M_LILO :E LILO defaults (Linux boot loader) *************** *** 5,9 **** !E_GRAPH :E Can't do this\nbecause the Graphic mode is not yet\nconfigured\n\n%s ! :T Kan inte göra detta\ndå grafikläge inte är\ninställt\n\n%s !E_GRAPHNET :E Can't do this\n --- 12,18 ---- !E_GRAPH :E Can't do this\nbecause the Graphic mode is not yet\nconfigured\n\n%s ! :T Kan inte göra detta\n ! +då grafikläge inte ännu är\n ! +inställt\n\n%s !E_GRAPHNET :E Can't do this\n *************** *** 15,19 **** +\n +%s ! :T Kan inte göra detta\ndå grafikläge och nätverk inte är\ninställt\n\n%s\n%s !E_NET :E Can't do this\nbecause the Networking is not yet\nconfigured\n\n%s --- 24,33 ---- +\n +%s ! :T Kan inte göra detta\n ! +då grafikläge och nätverk inte är\n ! +inställt\n ! +\n ! +%s\n ! +%s !E_NET :E Can't do this\nbecause the Networking is not yet\nconfigured\n\n%s *************** *** 27,34 **** !M_NEWKERN :E a new kernel ! :T Inställning av ny kärna !M_COMPILED :E a kernel you have compiled ! :T Anpassa nykompilerad kärna !M_DEFBOOT :E default boot mode --- 41,48 ---- !M_NEWKERN :E a new kernel ! :T Installera kärna !M_COMPILED :E a kernel you have compiled ! :T Nykompilerad kärna !M_DEFBOOT :E default boot mode *************** *** 174,180 **** :E You must specify the root partition :T root-partition måste anges - !E_IVLSECTOR - :E Invalid partition or device for boot sector\ninstallation - :T Felaktig partition eller enhet för\ninstallation av laddsektor !T_ACTLILO :E Activating LILO configuration --- 188,191 ---- *************** *** 208,212 **** !T_ADDINGKERN :E Adding a new kernel to LILO ! :T Lägger in en ny lilo-kärna !I_ADDINGKERN :E You have already a working LILO\nand you want to upgrade your kernel --- 219,223 ---- !T_ADDINGKERN :E Adding a new kernel to LILO ! :T Ny kärna i LILO !I_ADDINGKERN :E You have already a working LILO\nand you want to upgrade your kernel *************** *** 241,245 **** !I_DEFKERN :E Pick the configuration which will become\nthe default LILO configuration ! :T Välj inställning som ska förinställas för\nnormal uppstart. !M_GR_NET :E Graphic & Network --- 252,256 ---- !I_DEFKERN :E Pick the configuration which will become\nthe default LILO configuration ! :T Välj inställning som ska användas för\nnormal uppstart. !M_GR_NET :E Graphic & Network *************** *** 279,291 **** +and a timeout. A timeout of 0 means\n +to wait forever.\n ! :T Ange ett normalt operationsläge och\n ! +en väntetid. +\n ! +Om menyn aktiveras så ska väntetid anges.\n ! +Om väntetiden då sätts till noll, så sker ingen\n ! +tidtagning: Ett val måste då alltid göras. !N_NOTCONF :E This runlevel is not yet configured ! :T Detta operationsläge är inte inställt !M_NONET :E No network --- 290,300 ---- +and a timeout. A timeout of 0 means\n +to wait forever.\n ! :T Ange ett normalt operationsläge och en väntetid.\n +\n ! +Om väntetiden sätts till noll, så sker ingen\n ! +nedräkning. !N_NOTCONF :E This runlevel is not yet configured ! :T Detta operationsläge är ännu inte inställt !M_NONET :E No network diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/dialog.dic linuxconf-1.15/messages/se/dialog.dic *** linuxconf-1.14r4/messages/se/dialog.dic Sun Feb 21 07:50:46 1999 --- linuxconf-1.15/messages/se/dialog.dic Sun Mar 14 13:53:16 1999 *************** *** 1,3 **** --- 1,7 ---- @version 0 + !E_NOHELPFILE + :E Help file %s not yet written + :T Hjälptext har tyvärr ännu inte skrivits\n + +(fil: %s) !B_YES :E Yes *************** *** 75,81 **** :E This field may not be empty :T Detta fält får inte lämnas blankt - !E_NOHELPFILE - :E Missing help file %s - :T Hjälpinformation saknas tyvärr (fil %s) !E_NOPT :E No decimal point allowed --- 79,82 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/dialout.dic linuxconf-1.15/messages/se/dialout.dic *** linuxconf-1.14r4/messages/se/dialout.dic Sun Feb 21 08:25:10 1999 --- linuxconf-1.15/messages/se/dialout.dic Mon Apr 12 16:52:39 1999 *************** *** 25,29 **** !X_KILLDIALD :E Killing on demand IP for config %s\n ! :T Stoppar inställning %s för IP behovsanslutning\n !E_DIALDCONUID :E netconf --setupdiald can only be used by root (by diald)\n --- 25,29 ---- !X_KILLDIALD :E Killing on demand IP for config %s\n ! :T Stoppar IP behovsanslutning %s\n !E_DIALDCONUID :E netconf --setupdiald can only be used by root (by diald)\n *************** *** 364,369 **** :T Ändra eller lägg till PPP/SLIP inställningar.\n +\n ! +Detta ger möjligheet att ansluta datorn till internet\n ! +via modem och PPP- eller SLIP-protokoll till en annan dator\n +som i sin tur har fast förbindelse till internet.\n !P_ACTLINK --- 364,369 ---- :T Ändra eller lägg till PPP/SLIP inställningar.\n +\n ! +Detta ger möjlighet att ansluta datorn till internet\n ! +via PPP- eller SLIP-protokoll och modem till en annan dator\n +som i sin tur har fast förbindelse till internet.\n !P_ACTLINK *************** *** 372,376 **** !E_NOCONF :E No configuration %s ! :T Inge inställning %s !E_IVLOPTION :E Invalid option\nnetconf --connect site [ --fore ] --- 372,376 ---- !E_NOCONF :E No configuration %s ! :T Ingen inställning %s !E_IVLOPTION :E Invalid option\nnetconf --connect site [ --fore ] *************** *** 428,432 **** !T_UPDSCRIPT :E Update script ! :T Uppdateringskommando !I_UPDSCRIPT :E The script %s is not compatible with linuxconf\n --- 428,432 ---- !T_UPDSCRIPT :E Update script ! :T Ändring av skript !I_UPDSCRIPT :E The script %s is not compatible with linuxconf\n *************** *** 438,445 **** +\n +May I install the modifications ? ! :T Kommandot %s passar inte med Linuxconf. En ny sektion läggs till\n +för att bevara vad som redan finns.\n ! +Denna modifiering behöver inte läggas till. PPP-anslutning kommer\n ! +ändå att fungera, men vissa funktioner kommer inte att fungera\n +(t ex extra ruttning).\n +\n --- 438,445 ---- +\n +May I install the modifications ? ! :T Skript %s passar inte för Linuxconf. En ny sektion läggs till\n +för att bevara vad som redan finns.\n ! +Denna modifiering behöver dock inte göras. PPP-anslutningen kommer\n ! +ändå att fungera, men vissa funktioner kommer att saknas\n +(t ex extra ruttning).\n +\n *************** *** 455,459 **** + -connection detection\n :T Fil %s är inte ett skript.\n ! + (#!/bin/sh eller #!/bin/bash i början)\n +Linuxconf ändrar inte detta.\n +Fixa manuellt.\n --- 455,459 ---- + -connection detection\n :T Fil %s är inte ett skript.\n ! + (Inget #!/bin/sh eller #!/bin/bash i början)\n +Linuxconf ändrar inte detta.\n +Fixa manuellt.\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/dnsconf.dic linuxconf-1.15/messages/se/dnsconf.dic *** linuxconf-1.14r4/messages/se/dnsconf.dic Thu Mar 11 13:48:47 1999 --- linuxconf-1.15/messages/se/dnsconf.dic Mon Apr 12 17:38:15 1999 *************** *** 1,3 **** --- 1,131 ---- @version 0 + !I_ACLNAME + :E Enter the name of the acl which will be\nused in access control + :T Ange det namn på behörighetslistan som ska användas\n + +vid behörighetskontroll. + !F_NOTIFY + :E Notify + :T Informera: + !I_NO + :E No + :T Nej + !I_YES + :E Yes + :T Ja + !I_DEFAULT + :E Default + :T Grundinställning + !F_NICKNAME + :E nick name for (CNAME) + :T Smeknamn för (CNAME): + !F_IPADRS + :E IP addrs. + :T IP-adresser + !F_DNSADV + :E Name servers (NS) + :T Namn-servrar(NS) + !F_EMAILADV + :E Mail servers (MX) + :T Postkontor e-post(MX) + !F_ALLOWTRANS + :E Allow transfer to + :T Tillåt överföring till + !F_ALLOWQUERY + :E Allow query from + :T Tillåt förfrågan från + !F_LISTENON + :E Listen on + :T Lyssna på + !T_ACCESS + :E Access control + :T Behörighetskontroll + !F_ALLOWUPDATE + :E Allow update from + :T Tillåt ändring från + !F_ALSONOTIFY + :E Also notify + :T Meddela också + !H_ACLS + :E Acl names + :T Behörighetslista + !I_ADDMATCH + :E Select [Add] to add a new access pattern + :T Välj [Lägg till] för en ny behörighetsregel. + !T_ACL + :E Access control list %s + :T Behörighetslista %s + !I_ADDACL + :E Select [Add] to add a new access control list + :T Välj [Lägg till] för en ny behörighetslista. + !T_ACLS + :E Access control lists + :T Behörighetslistor + !M_ACL + :E Access control lists + :T Behörighetslistor + !M_LOGGING + :E Logging + :T Loggning + !H_ACL + :E Host/Network/Acl\tNet size + :T Värddator/Nätverk/Regel\tTyp + !I_DELACL + :E Select [Del] to delete this + :T Välj [Ta bort] för borttagning + !M_SECURITY + :E Security + :T Säkerhet + !F_NETHOSTACL + :E Network, Host or ACL + :T Nätverk, värddator eller behörighetslista: + !F_NETSIZE + :E Network type (/xx) + :T Nätverkstyp (Antal bitar): + !I_DELADDR + :E Select [Del] to delete this entry + :T Välj [Ta bort] för borttagning + !T_ADDRMATCH + :E One address match + :T Behörighetsregel + !I_ADDRMATCH + :E You must enter here one of the following combination\n + + One host IP number\n + + A network IP number and a number of signigficative bits\n + + (16 for a class B, 24 for a class C network)\n + + One ACL name\n + :T Ange antingen:\n + + - En IP-adress för en värddator.\n + + - En IP-adress för ett nätverk och antalet signifikanta\n + + bitar (16 för klass B, 24 för klass C).\n + + - Ett namn för en behörighetsregel.\n + !E_HOSTIP + :E You must enter a host IP number here + :T Ange en IP-adress för en värddator här + !E_IVLDACL + :E %s is not valid ACL name + !E_NETWORKIP + :E You must enter a network IP number here + :T Ange IP-adressen här + !E_NETSIZE + :E You must provide a number between\n1 and 32 + :T Ett nummer mellan 1 och 32\nmåste anges. + !M_ACCESS + :E Access control + :T Behörighetskontroll + !T_DNSACCESS + :E General access control + :T Allmän behörighetskontroll + !B_EDITNAME + :E Edit acl name + :T Ändra namn behörighetslista + !T_ACLNAME + :E Acl name + :T Namn behörighetslista + !E_NOSPACE + :E You must enter a single word.\nNo space allowed! + :T Endast ett enstaka ord.\nBlanka tillåts ej! + !F_ACLNAME + :E Name + :T Namn !N_DNSUSAGE :E Module dnsconf\n *************** *** 100,115 **** :E host or sub-domain :T Värddator eller underordnad domän: - !F_NICKNAME - :E is a nick name for - :T Detta är ett smeknamn för: - !F_IPADRS - :E IP addresses - :T IP-adresser - !F_DNSADV - :E DNS advertising(NS) - :T Tillkännage namn-server(NS) - !F_EMAILADV - :E EMAIL advertising(MX) - :T Tillkännage e-post(MX) !T_HOSTINFO :E Host information --- 228,231 ---- *************** *** 165,169 **** !T_PRIMSPEC :E Primary specification ! :T Namn-servrar !I_PRIMSPEC :E You must enter a domain name\n --- 281,285 ---- !T_PRIMSPEC :E Primary specification ! :T Namn-server !I_PRIMSPEC :E You must enter a domain name\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/fstab.dic linuxconf-1.15/messages/se/fstab.dic *** linuxconf-1.14r4/messages/se/fstab.dic Thu Mar 11 16:48:00 1999 --- linuxconf-1.15/messages/se/fstab.dic Sat Apr 10 15:48:35 1999 *************** *** 355,361 **** +settings of all configuration files and directories\n +managed by linuxconf. ! :T Se och ändra skyddsinställningar för\n ! +alla filer och kataloger som hanteras\n ! +av Linuxconf. !T_CHR :E Chrdev --- 355,360 ---- +settings of all configuration files and directories\n +managed by linuxconf. ! :T Se och ändra skyddsinställningar för alla filer och kataloger som\n ! +hanteras av Linuxconf. !T_CHR :E Chrdev *************** *** 366,376 **** !F_MAYEXEC :E May execute ! :T Rättighet att exekvera !F_MAYWRITE :E May write ! :T Rättighet att skriva !F_MAYREAD :E May read ! :T Rättighet att läsa !T_USER :E User --- 365,375 ---- !F_MAYEXEC :E May execute ! :T Exekvera !F_MAYWRITE :E May write ! :T Skriva !F_MAYREAD :E May read ! :T Läsa !T_USER :E User *************** *** 384,424 **** !F_USRQUOTA :E User quota enabled ! :T Användarbegränsningar !F_GRPQUOTA :E Group quota enabled ! :T Gruppbegränsningar !T_QUOTADEF :E Default quota for users and groups ! :T Standardbegränsningar för användare och grupper !I_QUOTADEF :E ! :T !M_QUOTA :E Set quota defaults ! :T Sätt standardbegränsningar !F_SOFTK :E Disk space soft limit ! :T Mjuk gräns för diskutrymme: !F_HARDK :E Disk space hard limit ! :T Absolut diskutrymmesgräns: !F_GRACEK :E Disk space grace period ! :T Mjuk övergångstid (dd:tt:mm:ss): !F_SOFTF :E Files soft limit ! :T Mjuk gräns för filstorlek: !F_HARDF :E Files hard limit ! :T Absolut gräns för filstorlek: !F_GRACEF :E Files grace period ! :T Mjuk övergångstid (dd:tt:mm:ss): !T_USERDEF :E User default ! :T Förinställning användare !T_GROUPDEF :E Group default ! :T Förinställning grupper !I_QUOTACHECK :E You have enable disk quota management on\n --- 383,425 ---- !F_USRQUOTA :E User quota enabled ! :T Användargränsvärden !F_GRPQUOTA :E Group quota enabled ! :T Gruppgränsvärden !T_QUOTADEF :E Default quota for users and groups ! :T Diskgränsvärden för användare och grupper !I_QUOTADEF :E ! :T Ange standardvärden för diskgränsvärden som ska gälla när\n ! +nya användare och grupper skapas.\n ! +Nedanstående standardvärden kan ändras när detta sker. !M_QUOTA :E Set quota defaults ! :T Diskgränsvärden !F_SOFTK :E Disk space soft limit ! :T Mjuk gräns för diskutrymme (KB): !F_HARDK :E Disk space hard limit ! :T Absolut gräns för diskutrymme (KB): !F_GRACEK :E Disk space grace period ! :T Mjuk övergångstid (dagar:tim:min:sek): !F_SOFTF :E Files soft limit ! :T Mjuk gräns för antal filer: !F_HARDF :E Files hard limit ! :T Absolut gräns för antal filer: !F_GRACEF :E Files grace period ! :T Mjuk övergångstid (dagar:tim:min:sek): !T_USERDEF :E User default ! :T Standardinställning användare !T_GROUPDEF :E Group default ! :T Standardinställning grupper !I_QUOTACHECK :E You have enable disk quota management on\n *************** *** 429,436 **** +\n +Should we do this now ? ! :T Du har satt på diskutrymmesbegränsningar på\n +filsystem %s.\n ! +För att aktivera detta, så måste \"quotacheck\" köras.\n ! +Den kommer att söka igenom katalogerna och uppdatera det\n +nuvarande diskutnyttjandet för varje användare och grupp.\n +\n --- 430,437 ---- +\n +Should we do this now ? ! :T Du har aktiverat diskgränsvärden för\n +filsystem %s.\n ! +För att effektuera detta, så måste \"quotacheck\" köras.\n ! +Programmet söker igenom katalogerna och uppdatera det\n +nuvarande diskutnyttjandet för varje användare och grupp.\n +\n *************** *** 440,444 **** !T_QUOTACHECK :E Installing quota on a file-system ! :T Installerar begränsningar för ett filsystem !F_VFAT :E DOS with long file name --- 441,445 ---- !T_QUOTACHECK :E Installing quota on a file-system ! :T Installerar gränsvärden för ett filsystem !F_VFAT :E DOS with long file name *************** *** 475,480 **** +Visit the \"Access local drive\" menu and enable\n +disk quota on selected volumes. ! :T Det finns f n ingen diskpartition med diskutrymmesbegränsningar\n ! +aktiverade. Aktivera detta via menyval \"Anslutning lokal disk\". !H_FSTABNET :E Source\tMount point\tFsType\tStatus --- 476,481 ---- +Visit the \"Access local drive\" menu and enable\n +disk quota on selected volumes. ! :T Det finns f n ingen diskpartition med aktiva diskgränsvärden.\n ! +Aktivera detta via menyval \"Anslutning lokal disk\". !H_FSTABNET :E Source\tMount point\tFsType\tStatus *************** *** 540,542 **** !N_MOUNTOK :E Mount successful ! :T Montering framgångsrik --- 541,543 ---- !N_MOUNTOK :E Mount successful ! :T Montering lyckades diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/inittab.dic linuxconf-1.15/messages/se/inittab.dic *** linuxconf-1.14r4/messages/se/inittab.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/se/inittab.dic Sat Apr 10 15:04:25 1999 *************** *** 0 **** --- 1,16 ---- + @version 0 + !M_inittab + :E Initial system services + :T Systemtjänster vid uppstart + !T_USAGE + :E Module inittab\n\n --setdefaultlevel default_runlevel\n + :T Modul inittab\n\n --setdefaultlevel standard_operationsläge\n + !F_DEFAULTLEVEL + :E Default runlevel + :T Vid uppstart gäller: + !T_DEFLEVEL + :E Init default runlevel + :T Standard operationsläge + !F_RUNLEVEL + :E Run level %d + :T Operationsläge %d diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/mailconf.dic linuxconf-1.15/messages/se/mailconf.dic *** linuxconf-1.14r4/messages/se/mailconf.dic Thu Mar 11 15:20:24 1999 --- linuxconf-1.15/messages/se/mailconf.dic Sat Apr 10 14:52:23 1999 *************** *** 1,3 **** --- 1,6 ---- @version 0 + !H_MALIASES + :E Aliases + :T Synonymer !T_ADDMASQ :E Select [Add] to define a new masquerading rule *************** *** 21,25 **** :T Max storlek för inkorgens (kb): !I_NEWALIAS ! :E Select [Add] to add a new aliase :T Välj [lägg till] för att lägga till en ny synonym. !I_ADDONE --- 24,28 ---- :T Max storlek för inkorgens (kb): !I_NEWALIAS ! :E Select [Add] to add a new alias :T Välj [lägg till] för att lägga till en ny synonym. !I_ADDONE *************** *** 100,104 **** :T Ändra allmänna synonymer för postadress !IEDITALIASES ! :E You are allowed to edit/add/deleted\nsystem wide aliases for electronic mail :T Ändra, lägg till eller ta bort allmänna synonymer för post. !P_WRITE --- 103,107 ---- :T Ändra allmänna synonymer för postadress !IEDITALIASES ! :E You are allowed to edit/add/delete\nsystem wide aliases for electronic mail :T Ändra, lägg till eller ta bort allmänna synonymer för post. !P_WRITE diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/main.dic linuxconf-1.15/messages/se/main.dic *** linuxconf-1.14r4/messages/se/main.dic Tue Mar 9 18:22:59 1999 --- linuxconf-1.15/messages/se/main.dic Fri Apr 2 15:58:04 1999 *************** *** 1,3 **** --- 1,19 ---- @version 0 + !N_BUILDTREE + :E Linuxconf will now compute its menu tree.\n + +This may take a few seconds.\n + +Linuxconf does this either because you have upgraded linuxconf\n + +itself or because you have installed a new module. + :T Ett nytt menyträd installeras.\n + +\n + +Detta kan ta några sekunder\n + +\n + +Detta görs antingen på grund av att:\n + +- du har uppgraderat linuxconf, eller\n + +- du har installerat en ny modul, eller\n + +- du har valt ett annat språk\n + +\n + +Översättning: Torbjörn Gard\n + + (torbjorn.gard@elektrondata.se)\n !E_NOMISCSERV :E No misc services registered *************** *** 32,36 **** + --update\n + --vdb ...\n ! :T Linuxconf grundläggande kommandoväxlar\n + --archive [ subsystem ... ]\n + --demo\n --- 48,52 ---- + --update\n + --vdb ...\n ! :T Linuxconf grundläggande kommandoalternativ\n + --archive [ subsystem ... ]\n + --demo\n *************** *** 139,143 **** !F_HALT :E Shutdown & halt ! :T Avstängning/Omstart !F_DELAI :E Delay before shutdown(minutes) --- 155,159 ---- !F_HALT :E Shutdown & halt ! :T Avstängning !F_DELAI :E Delay before shutdown(minutes) *************** *** 346,365 **** :E --setmod and --unsetmod may only be done by root\n :T --setmod och --unsetmod får endast utnyttjas av root\n - !N_BUILDTREE - :E Linuxconf will now compute its menu tree.\n - +This may take few seconds.\n - +Linuxconf does this either because you have upgraded linuxconf\n - +itself or because you have installed a new module. - :T Ett nytt menyträd installeras.\n - +\n - +Detta kan ta några sekunder\n - +\n - +Detta görs antingen på grund av att:\n - +- du har uppgraderat linuxconf, eller\n - +- du har installerat en ny modul, eller\n - +- du har valt ett annat språk\n - +\n - +Översättning: Torbjörn Gard\n - + (torbjorn.gard@elektrondata.se)\n !F_PREFIXTRIG :E Trigger for filter --- 362,365 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/misc.dic linuxconf-1.15/messages/se/misc.dic *** linuxconf-1.14r4/messages/se/misc.dic Sun Feb 21 07:50:46 1999 --- linuxconf-1.15/messages/se/misc.dic Thu Apr 15 17:28:35 1999 *************** *** 1,3 **** --- 1,32 ---- @version 0 + !I_MODCONFPATH + :E You can redefined the path of a\n + +configuration file. If you do so\n + +Linuxconf will use the new path from now on.\n + +\n + +Be advise that other utilities are on their\n + +own and may forget to notice. Unless you\n + +really knows what you are doing, don't play\n + +here.\n + :T Ändra sökväg till en inställningsfil. Om detta görs\n + +så kommer Linuxconf i fortsättningen att\n + +använda den nya placeringen.\n + +\n + +Men observera att andra systemrutiner kanske inte\n + +känner till den ändrade sökvägen. Om du inte\n + +precis vet vad du gör ... lek inte här.\n + !I_MODLIST + :E You can add Linuxconf modules here.\n + +The modules are loaded each time linuxconf is used\n + +to enhance its functionality. + :T Inläggning av tilläggsmoduler till Linuxconf.\n + +Dessa moduler laddas varje gång och utökar programmets\n + +funktionalitet.\n + +T ex så finns moduler med följande namn:\n + +apache, dhcp, dialout, dnsconf, firewall, mailconf, motd,\n + +mrtg, netadm, pppdialin, rarp, samba, squid, status, treemenu,\n + +usermenu, wuftpd, xterminals ... etc\n + +\n + +Linuxconf måste startas om för att en tilläggsmodul ska synas. !I_EMPTYSLOT :E Select [Add] to add one empty slot in the dialog *************** *** 28,47 **** :E Modifying a config file path :T Ändrar placering av inställningsfil - !I_MODCONFPATH - :E You can redefined the path of a\n - +configuration file. If you do so\n - +Linuxconf will use the new path from now on.\n - +\n - +Be advise that other utilities are on there\n - +own and may forget to notice. Unless you\n - +really knows what you are doing, don't play\n - +here.\n - :T Ändra sökväg till en inställningsfil. Om detta görs\n - +så kommer Linuxconf i fortsättningen att\n - +använda den nya placeringen.\n - +\n - +Men observera att andra systemrutiner kanske inte\n - +känner till den ändrade sökvägen. Om du inte\n - +precis vet vad du gör ... lek inte här.\n !T_LISTCONF :E List of configuration files --- 57,60 ---- *************** *** 113,129 **** :E List of modules :T Lista över moduler - !I_MODLIST - :E You can add Linuxconf's module here.\n - +The modules are loaded each time linuxconf is used\n - +and enhance its functionnality. - :T Inläggning av tilläggsmoduler till Linuxconf.\n - +Dessa moduler laddas varje gång och utökar programmets\n - +funktionalitet.\n - +T ex så finns moduler med följande namn:\n - +apache, dhcp, dialout, dnsconf, firewall, mailconf, motd,\n - +mrtg, netadm, pppdialin, rarp, samba, squid, status, treemenu,\n - +usermenu, wuftpd, xterminals ... etc\n - +\n - +Linuxconf måste startas om för att en tilläggsmodul ska synas. !E_MODNOPATH :E Module %s does not exist\n --- 126,129 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/netconf.dic linuxconf-1.15/messages/se/netconf.dic *** linuxconf-1.14r4/messages/se/netconf.dic Thu Mar 11 15:25:00 1999 --- linuxconf-1.15/messages/se/netconf.dic Thu Apr 15 17:33:53 1999 *************** *** 1,3 **** --- 1,39 ---- @version 0 + !I_SCOPE + :E This dialog let you configure the different commands\n + +and daemons linuxconf is using.\n + +If you deselect one command, then you must\n + +manage this yourself. This facility\n + +is provided to help integrate linuxconf into\n + +a custom Linux installation.\n + +*** Unless you know what you are doing ***\n + +*** fiddling here is not recommended ***\n + :T Inställning av olika systemrutiner och bakgrundsrutiner\n + +som Linuxconf utnyttjar.\n + +\n + +Om ett kommando deaktiveras så måste detta fortsättningsvis\n + +hanteras manuellt.\n + +\n + +Inställningar som görs här avser att anpassa Linuxconf till\n + +ett redan fungerande system.\n + +\n + +Om du inte vet precis vad du gör, så är det inte lämpligt att\n + +ändra något här!\n + !I_ROUTEHOSTS + :E If your network has access to remote hosts\n + +you must tell how to reach those hosts\n + :T Om nätverket har tillgång till andra datorer över\n + +nätverket, ange hur dessa kan nås.\n + !I_ROUTENET + :E If your network has access to other networks\n + +you must tell how to reach those networks\n + :T Om ditt nätverk har tillgång till andra nätverk,\n + +ange hur dessa kan nås. + !I_ROUTEALT + :E If there are several IP networks sharing the same\n + +physical network (wire), you must configure the routing\n + +this here + :T Om flera IP-nätverk delar på samma fysiska kabel,\n + +så sker inställning av rutter här. !I_USAGE :E netconf command line options\n *************** *** 22,26 **** + --status\n + --update\n ! :T netconf kommandoväxlar\n +\n + --bootrc rc-sökväg [ föregående-rc-sökväg]\n --- 58,62 ---- + --status\n + --update\n ! :T netconf kommandoalternativ\n +\n + --bootrc rc-sökväg [ föregående-rc-sökväg]\n *************** *** 97,120 **** :E Netconf scope :T Netconf hantering - !I_SCOPE - :E This dialog let you configure the different commands\n - +and daemon linuxconf is using.\n - +If you deselect one command, then you must\n - +managed this yourself. This facility\n - +is provided to help integrate linuxconf into\n - +a working setup.\n - +*** Unless you know what you are doing ***\n - +*** fiddling here is not recommended ***\n - :T Inställning av olika systemrutiner och bakgrundsrutiner\n - +som Linuxconf utnyttjar.\n - +\n - +Om ett kommando deaktiveras så måste detta fortsättningsvis\n - +hanteras manuellt.\n - +\n - +Inställningar som görs här avser att anpassa Linuxconf till\n - +ett redan fungerande system.\n - +\n - +Om du inte vet precis vad du gör, så är det inte lämpligt att\n - +ändra något här!\n !X_SETNISDOM :E Set NIS domain to %s\n --- 133,136 ---- *************** *** 208,215 **** :E Route to other networks :T Andra nätverk - !I_ROUTEHOSTS - :E If your network has access to other networks\n - +you must tell how to reach those networks\n - :T Om nätverket ska anslutas till andra lokala nätverk,\nange hur dessa kan nås.\n !M_DEFROUTE :E Defaults --- 224,227 ---- *************** *** 1003,1007 **** !I_CONFIGLOG :E These logs shows all configuration commands\nissued by linuxconf ! :T Dessa loggar visar alla inställsningskommandon som Linuxconf\nåstadkommit. !E_LEFTBG :E Left running in the background --- 1015,1019 ---- !I_CONFIGLOG :E These logs shows all configuration commands\nissued by linuxconf ! :T Dessa loggar visar alla inställningskommandon från Linuxconf. !E_LEFTBG :E Left running in the background *************** *** 1015,1019 **** !I_PREBOOT :E Tasks before booting ! :T Uppgifter innan uppstart !I_BOOTING :E Booting --- 1027,1031 ---- !I_PREBOOT :E Tasks before booting ! :T Kommandon vid uppstart !I_BOOTING :E Booting diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/pppdialin.dic linuxconf-1.15/messages/se/pppdialin.dic *** linuxconf-1.14r4/messages/se/pppdialin.dic Thu Mar 11 15:45:48 1999 --- linuxconf-1.15/messages/se/pppdialin.dic Fri Apr 2 15:58:21 1999 *************** *** 1,3 **** --- 1,26 ---- @version 0 + !T_MODIPUP + :E Modify ip-up/ip-down + :T Ändra filer ip-up/ip-down + !I_MODIPUP + :E The files /etc/ppp/ip-up and /etc/ppp/ip-down\n + +must be modified to support the pppdialin module\n + +\n + +The following lines must be added respectivly to\n + +each file:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Do you want to do it ? + :T Filerna /etc/ppp/ip-up och /etc/ppp/ip-down\n + +måste ändras för att inkommande anslutning ska\n + +kunna hanteras.\n + +\n + +Följande rader måste läggas till i respektive fil:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n !F_OURIP :E Local IP number *************** *** 8,12 **** !T_USAGE :E Module pppdialin\n\n No command line option\n ! :T Modul pppdialin\n\n Kommandoväxlar saknas\n !T_PPPPARMS :E PPP parms --- 31,35 ---- !T_USAGE :E Module pppdialin\n\n No command line option\n ! :T Modul pppdialin\n\n Kommandoalternativ saknas\n !T_PPPPARMS :E PPP parms diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/rarp.dic linuxconf-1.15/messages/se/rarp.dic *** linuxconf-1.14r4/messages/se/rarp.dic Sun Feb 21 07:50:46 1999 --- linuxconf-1.15/messages/se/rarp.dic Fri Apr 2 15:58:34 1999 *************** *** 2,6 **** !T_USAGE :E Module rarp\n\n No command line option\n ! :T Modul rarp\n\n Kommandoväxlar saknas\n !I_ANEWENTRY :E Select [Add] to add a new entry --- 2,6 ---- !T_USAGE :E Module rarp\n\n No command line option\n ! :T Modul rarp\n\n Kommandoalternativ saknas\n !I_ANEWENTRY :E Select [Add] to add a new entry *************** *** 8,12 **** !M_rarp :E RARP service ! :T Omvänd adressöversättning (\"RARP\") !E_IVLDRARPFORM :E Invalid format in file %s, line %d --- 8,12 ---- !M_rarp :E RARP service ! :T Omvänd adressöversättning (RARP) !E_IVLDRARPFORM :E Invalid format in file %s, line %d diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/redhatppp.dic linuxconf-1.15/messages/se/redhatppp.dic *** linuxconf-1.14r4/messages/se/redhatppp.dic Sun Feb 21 07:50:46 1999 --- linuxconf-1.15/messages/se/redhatppp.dic Fri Apr 2 15:58:44 1999 *************** *** 2,6 **** !T_USAGE :E Module redhatppp\n\n No command line option\n ! :T Modul redhatppp\n\n Kommandoväxlar saknas\n !M_DIALOUT :E PPP/SLIP/PLIP --- 2,6 ---- !T_USAGE :E Module redhatppp\n\n No command line option\n ! :T Modul redhatppp\n\n Kommandoalternativ saknas\n !M_DIALOUT :E PPP/SLIP/PLIP diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/samba.dic linuxconf-1.15/messages/se/samba.dic *** linuxconf-1.14r4/messages/se/samba.dic Thu Mar 11 13:38:42 1999 --- linuxconf-1.15/messages/se/samba.dic Sun Mar 21 12:44:47 1999 *************** *** 1,8 **** @version 0 - # *** updated message !T_SHARES - :Z DIsk shares - :T Gemensamma kataloger :E Disk shares !I_NEWSHARE :E Select [Add] to add a new disk share --- 1,6 ---- @version 0 !T_SHARES :E Disk shares + :T Gemensamma kataloger !I_NEWSHARE :E Select [Add] to add a new disk share diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/squid.dic linuxconf-1.15/messages/se/squid.dic *** linuxconf-1.14r4/messages/se/squid.dic Sun Feb 21 07:50:46 1999 --- linuxconf-1.15/messages/se/squid.dic Fri Apr 2 15:58:51 1999 *************** *** 2,6 **** !T_USAGE :E Module squid\n\n No command line option\n ! :T Modul squid\n\n Kommandoväxlar saknas\n !F_HTTPPORT :E Http port --- 2,6 ---- !T_USAGE :E Module squid\n\n No command line option\n ! :T Modul squid\n\n Kommandoalternativ saknas\n !F_HTTPPORT :E Http port diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/status.dic linuxconf-1.15/messages/se/status.dic *** linuxconf-1.14r4/messages/se/status.dic Thu Mar 11 13:38:42 1999 --- linuxconf-1.15/messages/se/status.dic Thu Apr 15 17:39:40 1999 *************** *** 1,6 **** @version 0 ! # *** new message !E_NOTDONE :E Not done yet! !M_status :E Viewing system state --- 1,18 ---- @version 0 ! !M_SCSI ! :E scsi devices ! :T SCSI-enheter ! !M_PCI ! :E PCI devices ! :E PCI-enheter ! !I_HOSTNAMEIS ! :E Host name: %s ! :T Värddator: %s ! !M_MD ! :E RAID (MD) usage ! :T RAID (MD) användning !E_NOTDONE :E Not done yet! + :T Ännu ej klart! !M_status :E Viewing system state diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/treemenu.dic linuxconf-1.15/messages/se/treemenu.dic *** linuxconf-1.14r4/messages/se/treemenu.dic Sun Feb 21 07:50:46 1999 --- linuxconf-1.15/messages/se/treemenu.dic Fri Apr 2 15:58:57 1999 *************** *** 14,18 **** !T_USAGE :E treemenu usage\n\ntreemenu --option ...\n ! :T treemenu\n\n Kommandoväxlar saknas\n !B_QUIT :E Quit --- 14,18 ---- !T_USAGE :E treemenu usage\n\ntreemenu --option ...\n ! :T treemenu\n\n Kommandoalternativ saknas\n !B_QUIT :E Quit diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/se/userconf.dic linuxconf-1.15/messages/se/userconf.dic *** linuxconf-1.14r4/messages/se/userconf.dic Sun Feb 21 07:50:46 1999 --- linuxconf-1.15/messages/se/userconf.dic Mon Apr 12 17:23:46 1999 *************** *** 1,9 **** @version 0 !I_TOADD :E Select [Add] to add a new definition ! :T Välj [lägg till] för att lägga in en ny användare. !I_EMPTYLINE :E Select [Add] to add an empty line ! :T Välj [lägg till] för att skapa en tom rad. !I_USAGE :E userconf command line options\n --- 1,21 ---- @version 0 + !F_DONOTHING + :E Do nothing + :T Gör ingenting + !F_CHOWNDIR + :E Change ownership of the directory + :T Ändra ägare på katalogen + !T_FIXHOME + :E Fixing home directory + :T Rättar till hemkatalog + !F_CHOWNRECUR + :E Change ownership recursivly + :T Ändrar ägare till lägsta nivå !I_TOADD :E Select [Add] to add a new definition ! :T Välj [lägg till] för att lägga in en ny. !I_EMPTYLINE :E Select [Add] to add an empty line ! :T \nVälj [lägg till] för att skapa en tom rad. !I_USAGE :E userconf command line options\n *************** *** 14,18 **** + --delgroup group\n + --help ! :T userconf kommandoväxlar\n +\n + --adduser användarnummer grupp användarnamn kommandotolk\n --- 26,30 ---- + --delgroup group\n + --help ! :T userconf kommandoalternativ\n +\n + --adduser användarnummer grupp användarnamn kommandotolk\n *************** *** 26,30 **** !T_GROUPS :E User groups ! :T Användargrupper !F_MANAGEPPP :E PPP accounts manager --- 38,42 ---- !T_GROUPS :E User groups ! :T Grupper !F_MANAGEPPP :E PPP accounts manager *************** *** 69,73 **** !T_GROUPSPEC :E Group specification ! :T Gruppspecifikation !INTRO_GROUPSPEC :E You must specify at least the name\n --- 81,85 ---- !T_GROUPSPEC :E Group specification ! :T Gruppinformation !INTRO_GROUPSPEC :E You must specify at least the name\n *************** *** 93,97 **** !P_PASSPOLICIES :E set the password and account policies ! :T sätt regler för lösenord och användarkonton !F_MINLEN :E Minimum length --- 105,109 ---- !P_PASSPOLICIES :E set the password and account policies ! :T sätt regler för lösenord och användare !F_MINLEN :E Minimum length *************** *** 102,106 **** !T_PASSPOLICIES :E Password/Account setting policies ! :T Regler för lösenord/användarkonton !I_PASSPOLICIES :E You must enter here the validation rules\n --- 114,118 ---- !T_PASSPOLICIES :E Password/Account setting policies ! :T Regler för lösenord/användare !I_PASSPOLICIES :E You must enter here the validation rules\n *************** *** 179,183 **** !F_GROUP :E group ! :T Tillhör grupp: !F_HOME :E Home directory(opt) --- 191,195 ---- !F_GROUP :E group ! :T Medlem i grupp: !F_HOME :E Home directory(opt) *************** *** 256,260 **** !M_GROUPDEF :E Group definitions ! :T Gruppdefinitioner !M_ROOTPASS :E Change root password --- 268,272 ---- !M_GROUPDEF :E Group definitions ! :T Grupper !M_ROOTPASS :E Change root password *************** *** 623,628 **** !E_UNLOCKPASS :E Unlock not done. This would yield an account\nwithout password ! :T Upplåsning är inte gjort.\n ! +Detta skulle resultera i en användare utan lösenord !N_UNLOCK :E Account is unlocked, old password left in place --- 635,639 ---- !E_UNLOCKPASS :E Unlock not done. This would yield an account\nwithout password ! :T Upplåsning är inte gjort.\nDetta skulle resultera i en användare utan lösenord !N_UNLOCK :E Account is unlocked, old password left in place *************** *** 652,662 **** !T_GDISKQUOTA :E Group disk quota ! :T Diskutrymme för grupp !T_UDEFDISKQUOTA :E Members default disk quota ! :T Diskutrymme för medlemmar !T_DISKQUOTA :E Disk quota ! :T Diskutrymme !E_NOSPACE :E No spaces allowed here --- 663,673 ---- !T_GDISKQUOTA :E Group disk quota ! :T Diskgränsvärden för grupp !T_UDEFDISKQUOTA :E Members default disk quota ! :T Diskgränsvärden för medlemmar !T_DISKQUOTA :E Disk quota ! :T Diskgränsvärden !E_NOSPACE :E No spaces allowed here *************** *** 673,677 **** !T_SPCACCTS :E Special accounts ! :T Speciella konton !X_PASSWD :E Passwd --- 684,688 ---- !T_SPCACCTS :E Special accounts ! :T Speciella användare !X_PASSWD :E Passwd *************** *** 688,692 **** !F_NEWUSERCMD :E Post-create command ! :T Kommando som körs efteråt: !F_DELETECMD :E Delete account command --- 699,703 ---- !F_NEWUSERCMD :E Post-create command ! :T Kommando efter uppläggning: !F_DELETECMD :E Delete account command *************** *** 734,741 **** !F_SUPGROUP :E Supplementary groups ! :T Extra grupper: !E_IVLDSUPGROUP :E Invalid supplementary group list ! :T Ogiltig lista över extra grupper !F_GECOSPREFIX :E Full name prefix --- 745,752 ---- !F_SUPGROUP :E Supplementary groups ! :T Ytterligare grupper: !E_IVLDSUPGROUP :E Invalid supplementary group list ! :T Ogiltig lista över ytterligare grupper !F_GECOSPREFIX :E Full name prefix *************** *** 755,759 **** !F_POSTDELCMD :E Pre-delete command ! :T Kommando för körning innan borttagning: !I_ARCHACCTDATA :E Archive the account's data --- 766,770 ---- !F_POSTDELCMD :E Pre-delete command ! :T Kommando innan borttagning: !I_ARCHACCTDATA :E Archive the account's data diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/LAST linuxconf-1.15/messages/sk/LAST *** linuxconf-1.14r4/messages/sk/LAST Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/LAST Thu Apr 15 19:01:37 1999 *************** *** 1 **** ! 1.13r15.1 --- 1 ---- ! 1.14r4 diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/askrunlevel.dic linuxconf-1.15/messages/sk/askrunlevel.dic *** linuxconf-1.14r4/messages/sk/askrunlevel.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/askrunlevel.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,10 ---- @version 0 + !E_IVLSECTOR + :E Unusual partition or device for boot sector\n + +installation. This will probably yield a non\n + +bootable system. + :T Nezvyèajný oddiel alebo zariadenie pre in¹taláciu\n + +zavádzacieho sektoru. Pravdepodobne nebude mo¾né\n + +zavádza» operaèný systém. !I_PROMPT :E Present the LILO boot: prompt *************** *** 186,192 **** :E You must specify the root partition :T Musíte definova» koreòový oddiel - !E_IVLSECTOR - :E Invalid partition or device for boot sector\ninstallation - :T Neplatný oddiel alebo zariadenie na in¹taláciu\nzavádzacieho sektoru. !T_ACTLILO :E Activating LILO configuration --- 193,196 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/dialog.dic linuxconf-1.15/messages/sk/dialog.dic *** linuxconf-1.14r4/messages/sk/dialog.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/dialog.dic Thu Apr 15 19:01:37 1999 *************** *** 1,6 **** @version 0 !E_NOHELPFILE ! :E Missing help file %s ! :T Chýbajúci súbor pomoci %s !X_HELP :E Help --- 1,6 ---- @version 0 !E_NOHELPFILE ! :E Help file %s not yet written ! :T Súbor pomoci %s e¹te nebol napísaný !X_HELP :E Help diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/dnsconf.dic linuxconf-1.15/messages/sk/dnsconf.dic *** linuxconf-1.14r4/messages/sk/dnsconf.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/dnsconf.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,131 ---- @version 0 + !F_NICKNAME + :E nick name for (CNAME) + :T prezývka pre (CNAME) + !F_IPADRS + :E IP addrs. + :T IP adr. + !F_DNSADV + :E Name servers (NS) + :T Menné servery (NS) + !F_EMAILADV + :E Mail servers (MX) + :T Po¹tové servery (MX) + !F_ALLOWTRANS + :E Allow transfer to + :T Povoli» prenos ku + !F_ALLOWQUERY + :E Allow query from + :T Povoli» query od + !F_LISTENON + :E Listen on + :T Poèúva» na + !T_ACCESS + :E Access control + :T Riadenie prístupu + !F_ALLOWUPDATE + :E Allow update from + :T Povoli» aktualizáciu od + !F_ALSONOTIFY + :E Also notify + :T Tie¾ upozorni» + !H_ACLS + :E Acl names + :T Acl mená + !I_ADDMATCH + :E Select [Add] to add a new access pattern + :T Vyberte [Prida»] na pridanie nového vzoru prístupu + !T_ACL + :E Access control list %s + :T Zoznam riadenia prístupu %s + !I_ADDACL + :E Select [Add] to add a new access control list + :T Vyberte [Prida»] na pridanie nového zoznamu riadenia prístupu + !T_ACLS + :E Access control lists + :T Zoznamy riadenia prístupov + !M_ACL + :E Access control lists + :T Zoznamy riadenia prístupov + !M_LOGGING + :E Logging + :T Prihlásenie + !H_ACL + :E Host/Network/Acl\tNet size + :T Poèítaè/Sie» /Acl\tVeµkos» siete + !I_DELACL + :E Select [Del] to delete this + :T Vyberte [Zmaza»] na zmazanie + !M_SECURITY + :E Security + :T Bezpeènos» + !F_NETHOSTACL + :E Network, Host or ACL + :T Sie», poèítaè alebo ACL + !F_NETSIZE + :E Network type (/xx) + :T Typ siete (/xx) + !I_DELADDR + :E Select [Del] to delete this entry + :T Vyberte [Zmaza»] na zmazanie tohto údaju + !T_ADDRMATCH + :E One address match + :T Jedna adresa je zhodná + !I_ADDRMATCH + :E You must enter here one of the following combination\n + + One host IP number\n + + A network IP number and a number of signigficative bits\n + + (16 for a class B, 24 for a class C network)\n + + One ACL name\n + :T Musíte tu zada» jednu z nasledujúcich kombinácii\n + + IP adresu poèítaèa\n + + IP adresu siete a poèet signifikantných bitov\n + + (16 pre siete triedy B, 24 pre siete triedy C)\n + + Meno zoznamu riadenia prístupov (ACL)\n + !E_HOSTIP + :E You must enter a host IP number here + :T Musíte tu zada» IP adresu poèítaèa + !E_IVLDACL + :E %s is not valid ACL name + :T %s nie je platné meno ACL + !E_NETWORKIP + :E You must enter a network IP number here + :T Musíte tu zada» IP adresu siete + !E_NETSIZE + :E You must provide a number between\n1 and 32 + :T Musíte tu zada» èíslo medzi\n1 a 32 + !M_ACCESS + :E Access control + :T Riadenie prístupu + !T_DNSACCESS + :E General access control + :T V¹eobecné riadenie prístupu + !B_EDITNAME + :E Edit acl name + :T Upravi» acl meno + !T_ACLNAME + :E Acl name + :T Acl meno + !I_ACLNAME + :E Enter the name of the acl which will be\nused in access control + :T Zadajte meno acl, ktoré bude pou¾ité\npri riadení prístupu + !E_NOSPACE + :E You must enter a single word.\nNo space allowed! + :T Musíte zada» jedno slovo. ®iadne\nmedzery nie sú povolené! + !F_ACLNAME + :E Name + :T Meno + !F_NOTIFY + :E Notify + :T Upozorni» + !I_NO + :E No + :T Nie + !I_YES + :E Yes + :T Áno + !I_DEFAULT + :E Default + :T Implicit. !N_DNSUSAGE :E Module dnsconf\n *************** *** 29,34 **** !E_SETHOSTPART :E Can't set host part for record type %d\n ! :T Nemô¾em nastavi» èas» pre poèítaè pre typ\n ! +záznamu %d\n !E_IVLDHOSTIP :E Invalid host IP number: %s\n --- 157,161 ---- !E_SETHOSTPART :E Can't set host part for record type %d\n ! :T Nemô¾em nastavi» èas» pre poèítaè pre typ\nzáznamu %d\n !E_IVLDHOSTIP :E Invalid host IP number: %s\n *************** *** 134,149 **** :E host or sub-domain :T Poèítaè alebo poddoména - !F_NICKNAME - :E is a nick name for - :T Je prezývka (nick name) pre - !F_IPADRS - :E IP addresses - :T IP adresy - !F_DNSADV - :E DNS advertising(NS) - :T DNS advertising(NS) - !F_EMAILADV - :E EMAIL advertising(MX) - :T EMAIL advertising(MX) !T_HOSTINFO :E Host information --- 261,264 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/inittab.dic linuxconf-1.15/messages/sk/inittab.dic *** linuxconf-1.14r4/messages/sk/inittab.dic Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/messages/sk/inittab.dic Thu Apr 15 19:01:37 1999 *************** *** 0 **** --- 1,16 ---- + @version 0 + !M_inittab + :E Initial system services + :T ©tartovacie systémové slu¾by + !T_USAGE + :E Module inittab\n\n --setdefaultlevel default_runlevel\n + :T Modul inittab\n\n --setdefaultlevel implicitná_úroveò_behu_systému + !F_DEFAULTLEVEL + :E Default runlevel + :T Implicitná úroveò behu systému + !T_DEFLEVEL + :E Init default runlevel + :T ©tartovacia implicitná úroveò behu systému + !F_RUNLEVEL + :E Run level %d + :T Úroveò behu systému %d diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/mailconf.dic linuxconf-1.15/messages/sk/mailconf.dic *** linuxconf-1.14r4/messages/sk/mailconf.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/mailconf.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,12 ---- @version 0 + !I_NEWALIAS + :E Select [Add] to add a new alias + :T Zvoµte [Prida»] na pridanie nového aliasu + !IEDITALIASES + :E You are allowed to edit/add/delete\nsystem wide aliases for electronic mail + :T Smiete upravova»/pridáva»/maza»\nsystémové aliasy pre elektronickú po¹tu + !H_MALIASES + :E Aliases + :T Aliasy !I_USAGE :E Module mailconf\n *************** *** 16,22 **** :E Select [Add] to define a new masquerading rule :T Zvoµte [Prida»] na pridanie nového ma¹karádového pravidla - !I_NEWALIAS - :E Select [Add] to add a new aliase - :T Zvoµte [Prida»] na pridanie nového aliasu !F_QUOTA :E Limit user inbox to (k) --- 25,28 ---- *************** *** 115,119 **** !I_ONEALIAS :E Use the button ADD to get more space\nin case you are defining a mailing list\n ! :T Pou¾ite tlaèítko PRIDA« na získanie viac\n +priestoru v prípade, ¾e definujete mailing list.\n !P_EDITALIAS --- 121,125 ---- !I_ONEALIAS :E Use the button ADD to get more space\nin case you are defining a mailing list\n ! :T Pou¾ite tlaèítko [Prida»] na získanie viac\n +priestoru v prípade, ¾e definujete mailing list.\n !P_EDITALIAS *************** *** 132,138 **** :E Edit global mail aliases :T Upravi» globálne po¹tové aliasy - !IEDITALIASES - :E You are allowed to edit/add/deleted\nsystem wide aliases for electronic mail - :T Smiete upravova»/pridáva»/maza»\nsystémové aliasy pre elektronickú po¹tu !P_WRITE :E write %s --- 138,141 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/main.dic linuxconf-1.15/messages/sk/main.dic *** linuxconf-1.14r4/messages/sk/main.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/main.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,12 ---- @version 0 + !N_BUILDTREE + :E Linuxconf will now compute its menu tree.\n + +This may take a few seconds.\n + +Linuxconf does this either because you have upgraded linuxconf\n + +itself or because you have installed a new module. + :T Linuxconf bude teraz vytvára» svoj strom menu.\n + +Toto mô¾e trva» niekoµko sekúnd.\n + +Linuxconf musí túto èinnos» vykona» z dôvodu, ¾e ste aktualizovali\n + +linuxconf, alebo, ¾e ste in¹talovali nový modul. !E_NOMISCSERV :E No misc services registered *************** *** 32,36 **** + --update\n + --vdb ...\n ! :T linuxconf - hlavné príkazové voµby\n\n + --archive [ sub-systems ... ]\n + --demo\n --- 41,46 ---- + --update\n + --vdb ...\n ! :T linuxconf - hlavné príkazové voµby\n ! +\n + --archive [ sub-systems ... ]\n + --demo\n *************** *** 68,72 **** !MNU_COMMANDS :E Configure all commands and daemons - :T Nastavi» v¹etky príkazy a démonov :T Nastavi» spravovanie príkazov a démonov !MNU_MODULE --- 78,81 ---- *************** *** 85,97 **** :E Configure system profiles :T Nastavi» systémové profily - !N_BUILDTREE - :E Linuxconf will now compute its menu tree.\n - +This may take few seconds.\n - +Linuxconf does this either because you have upgraded linuxconf\n - +itself or because you have installed a new module. - :T Linuxconf bude teraz vytvára» svoj strom menu.\n - +Toto mô¾e trva» niekoµko sekúnd.\n - +Linuxconf musí túto èinnos» vykona» z dôvodu, ¾e ste aktualizovali\n - +Linuxconf, alebo ¾e ste in¹talovali nový modul. !MNU_INTRO :E This is the main entry to Linux configuration.\n --- 94,97 ---- *************** *** 274,281 **** !MNU_CTRLFILE :E Control files and systems ! :T Správa Linuxconfu !T_CTRLFILE :E Linuxconf management ! :T Správa Linuxconfu !I_CTRLFILE :E This menu lets you manage Linuxconf's\nbehavior\n --- 274,281 ---- !MNU_CTRLFILE :E Control files and systems ! :T Konfiguraèné súbory a systém !T_CTRLFILE :E Linuxconf management ! :T Správa konfiguraèných súborov !I_CTRLFILE :E This menu lets you manage Linuxconf's\nbehavior\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/misc.dic linuxconf-1.15/messages/sk/misc.dic *** linuxconf-1.14r4/messages/sk/misc.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/misc.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,27 ---- @version 0 + !I_MODCONFPATH + :E You can redefined the path of a\n + +configuration file. If you do so\n + +Linuxconf will use the new path from now on.\n + +\n + +Be advise that other utilities are on their\n + +own and may forget to notice. Unless you\n + +really knows what you are doing, don't play\n + +here.\n + :T Mô¾ete predefinova» cestu\n + +konfiguraèného súboru. Ak tak spravíte,\n + +linuxconf bude túto cestu odteraz pou¾íva».\n + +\n + +Uvedomte si v¹ak, ¾e ïaµ¹ie utility sú na nej\n + +závislé a mô¾ete zabudnú» ich o tejto zmene\n + +informova». Kým neviete, èo presne robíte,\n + +nemeòte toto nastavenie.\n + !I_MODLIST + :E You can add Linuxconf modules here.\n + +The modules are loaded each time linuxconf is used\n + +to enhance its functionality. + :T Tu mô¾ete prida» moduly linuxconfu.\n + +Moduly sú naèítavané v¾dy, keï sa pou¾íva linuxconf\n + +a roz¹irujú jeho mo¾nosti. !I_EMPTYSLOT :E Select [Add] to add one empty slot in the dialog *************** *** 25,45 **** :E Modifying a config file path :T Upravujem cestu konfiguraèného súboru - !I_MODCONFPATH - :E You can redefined the path of a\n - +configuration file. If you do so\n - +Linuxconf will use the new path from now on.\n - +\n - +Be advise that other utilities are on there\n - +own and may forget to notice. Unless you\n - +really knows what you are doing, don't play\n - +here.\n - :T Mô¾ete predefinova» cestu\n - +konfiguraèného súboru. Ak tak spravíte\n - +Linuxconf bude túto cestu odteraz pou¾íva».\n - +\n - +Uvedomte si v¹ak, ¾e ïaµ¹ie utility sú na nej\n - +závislé a mô¾ete zabudnú» ich o tejto zmene\n - +informova». Kým neviete, èo presne robíte,\n - +nemeòte toto nastavenie.\n !T_LISTCONF :E List of configuration files --- 49,52 ---- *************** *** 54,59 **** :T Toto je zoznam v¹etkých súborov, ktoré sú spravované linuxconfom. Pre\n +ka¾dý súbor mô¾ete priamo vyvola» súbor s pomocou, ktorý popisuje jeho\n ! +úèel. ! +Písmená predchádzajúce meno súboru indikujú, ako je tento súbor\n +spravovaný linuxconfom. Vyvolaním pomoci získate viac informácii. !P_MODCONF --- 61,65 ---- :T Toto je zoznam v¹etkých súborov, ktoré sú spravované linuxconfom. Pre\n +ka¾dý súbor mô¾ete priamo vyvola» súbor s pomocou, ktorý popisuje jeho\n ! +úèel.Písmená predchádzajúce meno súboru indikujú, ako je tento súbor\n +spravovaný linuxconfom. Vyvolaním pomoci získate viac informácii. !P_MODCONF *************** *** 111,121 **** :E List of modules :T Zoznam modulov - !I_MODLIST - :E You can add Linuxconf's module here.\n - +The modules are loaded each time linuxconf is used\n - +and enhance its functionnality. - :T Tu mô¾ete prida» moduly Linuxconfu.\n - +Moduly sú naèítavané v¾dy, keï sa pou¾íva linuxconf\n - +a roz¹irujú jeho mo¾nosti. !E_MODNOPATH :E Module %s does not exist\n --- 117,120 ---- diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/netconf.dic linuxconf-1.15/messages/sk/netconf.dic *** linuxconf-1.14r4/messages/sk/netconf.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/netconf.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,37 ---- @version 0 + !I_SCOPE + :E This dialog let you configure the different commands\n + +and daemons linuxconf is using.\n + +If you deselect one command, then you must\n + +manage this yourself. This facility\n + +is provided to help integrate linuxconf into\n + +a custom Linux installation.\n + +*** Unless you know what you are doing ***\n + +*** fiddling here is not recommended ***\n + :T Tento dialóg vám umo¾ní nastavi» rozlièné príkazy a démonov, ktoré\n + +pou¾íva linuxconf.\n + +Ak odoberiete niektorý príkaz zo správy linuxconfu, musíte potom\n + +tento spravova» sám.\n + +\n + +Táto vlastnos» umo¾òuje integrova» linuxconf do systému upraveného\n + +podµa u¾ívateµských po¾iadaviek.\n + +*** Ak neviete, na èo slú¾i, rad¹ej toto nastavenie zachovajte ***\n + !I_ROUTEHOSTS + :E If your network has access to remote hosts\n + +you must tell how to reach those hosts\n + :T Ak má va¹a sie» prístup k ïaµ¹ím poèítaèom,\n + +musíte zada», ako ich dosiahnu».\n + !I_ROUTENET + :E If your network has access to other networks\n + +you must tell how to reach those networks\n + :T Ak má va¹a sie» prístup k ïaµ¹ím sie»am,\n + +musíte zada», ako ich dosiahnu».\n + !I_ROUTEALT + :E If there are several IP networks sharing the same\n + +physical network (wire), you must configure the routing\n + +this here + :T Ak existuje viac sietí, ktoré zdieµajú rovnakú (spoloènú)\n + +fyzickú sie» (kábel), musíte tu nastavi» smerovanie medzi\n + +nimi !I_USAGE :E netconf command line options\n *************** *** 85,103 **** :E Netconf scope :T Prehµad o v¹etkých príkazoch a slu¾bách - !I_SCOPE - :E This dialog let you configure the different commands\n - +and daemon linuxconf is using.\n - +If you deselect one command, then you must\n - +managed this yourself. This facility\n - +is provided to help integrate linuxconf into\n - +a working setup.\n - +*** Unless you know what you are doing ***\n - +*** fiddling here is not recommended ***\n - :T Tento dialóg vám umo¾ní nastavi» rozlièné príkazy a démonov, ktoré\n - +pou¾íva linuxconf.\n - +Ak odoberiete niektorý príkaz, musíte potom tento spravova» sám.\n - +\n - +Táto vlastnos» umo¾òuje integrova» linuxconf do vá¹ho systému.\n - +*** Ak neviete, na èo slú¾i, rad¹ej toto nastavenie zachovajte ***\n !X_SETNISDOM :E Set NIS domain to %s\n --- 119,122 ---- *************** *** 193,200 **** :E Route to other networks :T Smerovanie k ïaµ¹ím sie»am - !I_ROUTEHOSTS - :E If your network has access to other networks\n - +you must tell how to reach those networks\n - :T Ak má va¹a sie» prístup k ïaµ¹ím sie»am, musíte zada»,\nako ich dosiahnu».\n !M_DEFROUTE :E Defaults --- 212,215 ---- *************** *** 1185,1189 **** +µubovoµnú slu¾bu. Mô¾ete zakáza» slu¾bu nav¾dy\n +alebo doèasne. Doèasne znamená,\n ! +¾e Linuxconf vám bude pripomína» túto skutoènos»,\n +a aktivuje ju pri nasledujúcom ¹tarte systému.\n !I_REENABLE --- 1200,1204 ---- +µubovoµnú slu¾bu. Mô¾ete zakáza» slu¾bu nav¾dy\n +alebo doèasne. Doèasne znamená,\n ! +¾e linuxconf vám bude pripomína» túto skutoènos»,\n +a aktivuje ju pri nasledujúcom ¹tarte systému.\n !I_REENABLE diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/pppdialin.dic linuxconf-1.15/messages/sk/pppdialin.dic *** linuxconf-1.14r4/messages/sk/pppdialin.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/pppdialin.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,27 ---- @version 0 + !T_MODIPUP + :E Modify ip-up/ip-down + :T Upravi» ip-up/ip-down + !I_MODIPUP + :E The files /etc/ppp/ip-up and /etc/ppp/ip-down\n + +must be modified to support the pppdialin module\n + +\n + +The following lines must be added respectivly to\n + +each file:\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Do you want to do it ? + :T Súbory /etc/ppp/ip-up a /etc/ppp/ip-down\n + +musia by» modifikované, aby podporovali pppdialin\n + +modul.\n + +Nasledujúce riadky musia by» pridané do uvedených\n + +súborov.\n + +\n + +ip-up : /usr/lib/linuxconf/lib/ppppostlogin $*\n + +ip-down: /usr/lib/linuxconf/lib/ppppostlogout $*\n + +\n + +Prajete si uvedenú modifikáciu vykona»? !F_OURIP :E Local IP number diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/status.dic linuxconf-1.15/messages/sk/status.dic *** linuxconf-1.14r4/messages/sk/status.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/status.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,15 ---- @version 0 + !M_MD + :E RAID (MD) usage + :T Pou¾itie RAID (MD) + !M_SCSI + :E scsi devices + :T SCSI zariadenia + !M_PCI + :E PCI devices + :T PCI zariadenia + !I_HOSTNAMEIS + :E Host name: %s + :T Meno poèítaèa: %s !E_NOTDONE :E Not done yet! diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/userconf.dic linuxconf-1.15/messages/sk/userconf.dic *** linuxconf-1.14r4/messages/sk/userconf.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/userconf.dic Thu Apr 15 19:01:37 1999 *************** *** 1,3 **** --- 1,15 ---- @version 0 + !F_DONOTHING + :E Do nothing + :T Nevykona» niè + !F_CHOWNDIR + :E Change ownership of the directory + :T Zmeni» vlastníka adresára + !T_FIXHOME + :E Fixing home directory + :T Opravenie domáceho adresára + !F_CHOWNRECUR + :E Change ownership recursivly + :T Zmeni» vlastníka rekurzívne !I_TOADD :E Select [Add] to add a new definition *************** *** 730,735 **** :E Would you like to delete this account\n +even if the post-deletion command failed ? ! :T Prajete si zmaza» tento úèet napriek tomu,\n ! +¾e príkaz po zmazaní zlyhal ? !E_PREDELFAIL :E Pre-delete command failed for account %s\n --- 742,746 ---- :E Would you like to delete this account\n +even if the post-deletion command failed ? ! :T Prajete si zmaza» tento úèet napriek tomu,\n¾e príkaz po zmazaní zlyhal ? !E_PREDELFAIL :E Pre-delete command failed for account %s\n diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sk/usermenu.dic linuxconf-1.15/messages/sk/usermenu.dic *** linuxconf-1.14r4/messages/sk/usermenu.dic Wed Mar 10 22:01:19 1999 --- linuxconf-1.15/messages/sk/usermenu.dic Thu Apr 15 19:01:37 1999 *************** *** 5,9 **** !T_USAGE :E Module usermenu\n\n Supply the menu ID to start the user menu\n ! :T Modul usermenu\n\nu ©pecifikujte ID menu na spustenie u¾ívateµského menu\n !I_OPTIONS :E Linuxconf's options --- 5,9 ---- !T_USAGE :E Module usermenu\n\n Supply the menu ID to start the user menu\n ! :T Modul usermenu\n\n ©pecifikácia ID menu na spustenie u¾ívateµského menu\n !I_OPTIONS :E Linuxconf's options diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sources/mrtg.dic linuxconf-1.15/messages/sources/mrtg.dic *** linuxconf-1.14r4/messages/sources/mrtg.dic Wed Jan 6 21:33:24 1999 --- linuxconf-1.15/messages/sources/mrtg.dic Tue Apr 13 10:28:33 1999 *************** *** 9,13 **** :E Graph title !F_TOP ! :E Top of the page !F_MAXBYTES :E Maximum rate --- 9,13 ---- :E Graph title !F_TOP ! :E HTML heading !F_MAXBYTES :E Maximum rate *************** *** 52,53 **** --- 52,71 ---- !T_PMISC :E 9-Miscellaneous + !I_BYIPNUMBER + :E Network adaptor by IP number + !H_MRTG + :E Host\tFeature + !F_OPTIONS + :E Options + !I_LOADAVG + :E This computer load average + !I_MEMORY + :E This computer memory & swap + !F_YLEGEND + :E Y legend + !E_IVLDOPTNUM + :E Invalid number %s.\nOnly positive number are accepted.\nThis field is optional + !F_MAXBYTES1 + :E Max rate for graph1 (opt) + !F_MAXBYTES2 + :E Max rate for graph2 (opt) diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/messages/sources/userconf.dic linuxconf-1.15/messages/sources/userconf.dic *** linuxconf-1.14r4/messages/sources/userconf.dic Sun Mar 28 23:16:52 1999 --- linuxconf-1.15/messages/sources/userconf.dic Mon Apr 19 10:52:05 1999 *************** *** 45,49 **** +fullfill this requirements\n !E_NOROOT ! :E No root user in /etc/passwd\nBetter to let you in !T_PASSREQ :E Password required --- 45,49 ---- +fullfill this requirements\n !E_NOROOT ! :E No root user defined in /etc/passwd\nCan't let you in! !T_PASSREQ :E Password required diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/conectiva/filter.cc linuxconf-1.15/modules/conectiva/filter.cc *** linuxconf-1.14r4/modules/conectiva/filter.cc Tue Dec 8 21:58:11 1998 --- linuxconf-1.15/modules/conectiva/filter.cc Sun Apr 18 22:21:14 1999 *************** *** 211,215 **** static CONFIG_FILE f_release("/etc/redhat-release",help_nil ! ,CONFIGF_PROBED|CONFIGF_NOARCH); /* --- 211,215 ---- static CONFIG_FILE f_release("/etc/redhat-release",help_nil ! ,CONFIGF_PROBED|CONFIGF_NOARCH|CONFIGF_OPTIONAL); /* *************** *** 218,223 **** int redhat_release() { ! static int ret = 0; ! if (ret == 0){ FILE *fin = f_release.fopen ("r"); if (fin != NULL){ --- 218,227 ---- int redhat_release() { ! static int ret = -1; // Read the file only once ! if (ret == -1){ ! ret = 501; // Assume a redhat 5.1 default ! // for redhat based distribution without ! // an /etc/redhat-release file ! // redhat 5.1 is the first linuxconf aware redhat FILE *fin = f_release.fopen ("r"); if (fin != NULL){ *************** *** 261,265 **** ret = "1"; }else if (strcmp(rh->key2,"sysvenh")==0){ ! ret = redhat_release() > 500 ? "1" : "0"; }else if (strcmp(rh->key2,"rpmvendor")==0){ ret = vendor_getid(); --- 265,269 ---- ret = "1"; }else if (strcmp(rh->key2,"sysvenh")==0){ ! ret = release > 500 ? "1" : "0"; }else if (strcmp(rh->key2,"rpmvendor")==0){ ret = vendor_getid(); diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/mrtg/Makefile linuxconf-1.15/modules/mrtg/Makefile *** linuxconf-1.14r4/modules/mrtg/Makefile Fri Apr 9 10:06:17 1999 --- linuxconf-1.15/modules/mrtg/Makefile Mon Apr 12 23:01:01 1999 *************** *** 1,6 **** CURDIR=mrtg LOCAL_CLEAN=std_local_clean ! LOCAL_INSTALL=std_local_install ! all: $(CURDIR).so OBJS = mrtg.os mrtgedit.os _dict.os --- 1,6 ---- CURDIR=mrtg LOCAL_CLEAN=std_local_clean ! LOCAL_INSTALL=local_install ! all: $(CURDIR).so mrtg_loadavg OBJS = mrtg.os mrtgedit.os _dict.os *************** *** 10,13 **** --- 10,23 ---- include ../stdmod.mak + + mrtg_loadavg: mrtg_loadavg.o + $(GPPLINK) mrtg_loadavg.o -o mrtg_loadavg + + DESTDIR=$(RPM_BUILD_ROOT)/usr/lib/linuxconf/lib + + local_install: std_local_install + mkdir -p $(DESTDIR) + install -c -m 755 mrtg_loadavg $(DESTDIR) + install -c -m 755 mrtg_memory.sh $(DESTDIR) # Test program diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/mrtg/mrtg.m linuxconf-1.15/modules/mrtg/mrtg.m *** linuxconf-1.14r4/modules/mrtg/mrtg.m Wed Jan 6 21:33:24 1999 --- linuxconf-1.15/modules/mrtg/mrtg.m Tue Apr 13 10:28:33 1999 *************** *** 3,7 **** #define DICTIONARY_REQUEST \ const char **_dictionary_mrtg;\ ! TRANSLATE_SYSTEM_REQ _dictionary_req_mrtg("mrtg",_dictionary_mrtg,25,1);\ void dummy_dict_mrtg(){} #endif --- 3,7 ---- #define DICTIONARY_REQUEST \ const char **_dictionary_mrtg;\ ! TRANSLATE_SYSTEM_REQ _dictionary_req_mrtg("mrtg",_dictionary_mrtg,34,1);\ void dummy_dict_mrtg(){} #endif *************** *** 39,40 **** --- 39,49 ---- #define T_PRIVMRTG 23 #define T_PMISC 24 + #define I_BYIPNUMBER 25 + #define H_MRTG 26 + #define F_OPTIONS 27 + #define I_LOADAVG 28 + #define I_MEMORY 29 + #define F_YLEGEND 30 + #define E_IVLDOPTNUM 31 + #define F_MAXBYTES1 32 + #define F_MAXBYTES2 33 diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/mrtg/mrtg.p linuxconf-1.15/modules/mrtg/mrtg.p *** linuxconf-1.14r4/modules/mrtg/mrtg.p Wed Jan 7 02:05:15 1998 --- linuxconf-1.15/modules/mrtg/mrtg.p Mon Apr 12 23:15:04 1999 *************** *** 1,4 **** /* _dict.cc 06/01/98 00.31.46 */ ! /* mrtg.cc 06/01/98 01.55.00 */ ! /* mrtgedit.cc 07/01/98 02.05.12 */ void mrtg_edit (void); --- 1,5 ---- /* _dict.cc 06/01/98 00.31.46 */ ! /* mrtg.cc 30/07/98 11.04.48 */ ! /* mrtg_loadavg.cc 12/04/99 23.04.32 */ ! /* mrtgedit.cc 12/04/99 23.15.00 */ void mrtg_edit (void); diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/mrtg/mrtg.pm linuxconf-1.15/modules/mrtg/mrtg.pm *** linuxconf-1.14r4/modules/mrtg/mrtg.pm Wed Jan 7 02:05:15 1998 --- linuxconf-1.15/modules/mrtg/mrtg.pm Mon Apr 12 23:15:04 1999 *************** *** 1,8 **** /* _dict.cc 06/01/98 00.31.46 */ ! /* mrtg.cc 06/01/98 01.55.00 */ PUBLIC MODULE_MRTG::MODULE_MRTG (void); PUBLIC void MODULE_MRTG::setmenu (DIALOG&dia, MENU_CONTEXT context); PUBLIC int MODULE_MRTG::domenu (MENU_CONTEXT context, const char *key); ! /* mrtgedit.cc 07/01/98 02.05.12 */ PUBLIC MRTG_CONF::MRTG_CONF (const char *_id); PUBLIC MRTG_CONF::MRTG_CONF (void); --- 1,10 ---- /* _dict.cc 06/01/98 00.31.46 */ ! /* mrtg.cc 30/07/98 11.04.48 */ PUBLIC MODULE_MRTG::MODULE_MRTG (void); PUBLIC void MODULE_MRTG::setmenu (DIALOG&dia, MENU_CONTEXT context); PUBLIC int MODULE_MRTG::domenu (MENU_CONTEXT context, const char *key); ! /* mrtg_loadavg.cc 12/04/99 23.04.32 */ ! /* mrtgedit.cc 12/04/99 23.15.00 */ ! PRIVATE void MRTG_CONF::init (void); PUBLIC MRTG_CONF::MRTG_CONF (const char *_id); PUBLIC MRTG_CONF::MRTG_CONF (void); Binary files linuxconf-1.14r4/modules/mrtg/mrtg_loadavg and linuxconf-1.15/modules/mrtg/mrtg_loadavg differ diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/mrtg/mrtg_loadavg.cc linuxconf-1.15/modules/mrtg/mrtg_loadavg.cc *** linuxconf-1.14r4/modules/mrtg/mrtg_loadavg.cc Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/modules/mrtg/mrtg_loadavg.cc Mon Apr 19 09:11:22 1999 *************** *** 0 **** --- 1,32 ---- + /* #Specification: mrtg / mrtg_loadavg utility + This small utility is used to collect the load average for the mrtg + grapher. It multiplies the load by 100 to make it acceptable to mrtg. + + mrtg produces two graphs, but the second number is always 0. + */ + #include + #include + #include + #include + + int main (int , char *[]) + { + int ret = -1; + FILE *fin = fopen ("/proc/loadavg","r"); + if (fin == NULL){ + fprintf (stderr,"Can't open file /proc/loadavg (%s)\n" + ,strerror(errno)); + }else{ + double load5,load10,load15; + fscanf (fin,"%lf %lf %lf\n",&load5,&load10,&load15); + fclose (fin); + printf ("%d\n",(int)(load5*100)); + printf ("0\n"); // No second value for this graph + fflush (stdout); + system ("uptime"); + printf ("Load average\n"); + ret = 0; + } + return ret; + } + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/mrtg/mrtg_memory.sh linuxconf-1.15/modules/mrtg/mrtg_memory.sh *** linuxconf-1.14r4/modules/mrtg/mrtg_memory.sh Wed Dec 31 19:00:00 1969 --- linuxconf-1.15/modules/mrtg/mrtg_memory.sh Tue Apr 13 07:55:09 1999 *************** *** 0 **** --- 1,13 ---- + #!/bin/sh + # This small utility is used to collect the available memory and + # swap. For the memory, it sums the free, cached and buffers. + + memfree=`cat /proc/meminfo | grep MemFree: | ( read a b c && echo $b )` + cached=`cat /proc/meminfo | grep Cached: | ( read a b c && echo $b )` + buffers=`cat /proc/meminfo | grep Buffers: | ( read a b c && echo $b )` + total=`expr $memfree + $cached + $buffers` + expr $total \* 1000 + cat /proc/meminfo | grep SwapFree: | (read a b c && expr $b \* 1024) + uptime + echo Load average + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/mrtg/mrtgedit.cc linuxconf-1.15/modules/mrtg/mrtgedit.cc *** linuxconf-1.14r4/modules/mrtg/mrtgedit.cc Sun Dec 20 14:52:08 1998 --- linuxconf-1.15/modules/mrtg/mrtgedit.cc Tue Apr 13 09:59:10 1999 *************** *** 37,48 **** public: SSTRING id; ! SSTRING target_comment; ! SSTRING target; SSTRING maxbytes_comment; int maxbytes; ! SSTRING title_comment; ! SSTRING title; ! SSTRING pagetop_comment; ! SSTRING pagetop; /*~PROTOBEG~ MRTG_CONF */ public: --- 37,49 ---- public: SSTRING id; ! CSSTRING target; SSTRING maxbytes_comment; int maxbytes; ! CSSTRING maxbytes1; ! CSSTRING maxbytes2; ! CSSTRING title; ! CSSTRING pagetop; ! CSSTRING options; ! CSSTRING ylegend; /*~PROTOBEG~ MRTG_CONF */ public: *************** *** 50,53 **** --- 51,57 ---- MRTG_CONF (void); int edit (void); + private: + void init (void); + public: bool is_snmp (void); void target2command (SSTRING&command); *************** *** 55,67 **** /*~PROTOEND~ MRTG_CONF */ }; PUBLIC MRTG_CONF::MRTG_CONF(const char *_id) { id.setfrom (_id); ! maxbytes = 1250000; } PUBLIC MRTG_CONF::MRTG_CONF() { ! maxbytes = 1250000; } --- 59,76 ---- /*~PROTOEND~ MRTG_CONF */ }; + PRIVATE void MRTG_CONF::init() + { + maxbytes = 1250000; + ylegend.setfrom ("Bytes per Second"); + } PUBLIC MRTG_CONF::MRTG_CONF(const char *_id) { id.setfrom (_id); ! init(); } PUBLIC MRTG_CONF::MRTG_CONF() { ! init(); } *************** *** 204,218 **** } if (strcmp(keyw,"Target")==0){ ! one->target_comment.setfrom (comments); one->target.setfrom (value); }else if (strcmp(keyw,"MaxBytes")==0){ one->maxbytes_comment.setfrom (comments); one->maxbytes = atoi (value); }else if (strcmp(keyw,"Title")==0){ ! one->title_comment.setfrom (comments); one->title.setfrom (value); }else if (strcmp(keyw,"PageTop")==0){ ! one->pagetop_comment.setfrom (comments); one->pagetop.setfrom (value); }else{ xconf_error (MSG_R(E_IVLDDIREC),buf); --- 213,239 ---- } if (strcmp(keyw,"Target")==0){ ! one->target.setcomment (comments); one->target.setfrom (value); }else if (strcmp(keyw,"MaxBytes")==0){ one->maxbytes_comment.setfrom (comments); one->maxbytes = atoi (value); + }else if (strcmp(keyw,"MaxBytes1")==0){ + one->maxbytes1.setcomment (comments); + one->maxbytes1.setfrom (value); + }else if (strcmp(keyw,"MaxBytes2")==0){ + one->maxbytes2.setcomment (comments); + one->maxbytes2.setfrom (value); }else if (strcmp(keyw,"Title")==0){ ! one->title.setcomment (comments); one->title.setfrom (value); }else if (strcmp(keyw,"PageTop")==0){ ! one->pagetop.setcomment (comments); one->pagetop.setfrom (value); + }else if (strcmp(keyw,"Options")==0){ + one->options.setcomment (comments); + one->options.setfrom (value); + }else if (strcmp(keyw,"Ylegend")==0){ + one->ylegend.setcomment (comments); + one->ylegend.setfrom (value); }else{ xconf_error (MSG_R(E_IVLDDIREC),buf); *************** *** 228,231 **** --- 249,272 ---- } + /* + Check if the string contains a valid positive integer or is empty + Return true if ok + */ + static bool mrtg_validnum (const SSTRING &s) + { + const char *pt = s.get(); + bool ret = true; + while (*pt != '\0'){ + if (!isdigit(*pt)){ + xconf_error (MSG_U(E_IVLDOPTNUM,"Invalid number %s.\n" + "Only positive number are accepted.\n" + "This field is optional"),s.get()); + break; + } + pt++; + } + return ret; + } + PUBLIC int MRTG_CONF::edit() { *************** *** 236,241 **** } dia.newf_str (MSG_U(F_TITLE,"Graph title"),title); ! dia.newf_str (MSG_U(F_TOP,"Top of the page"),pagetop); dia.newf_num (MSG_U(F_MAXBYTES,"Maximum rate"),maxbytes); SNMPINFO sn; SSTRING command; --- 277,286 ---- } dia.newf_str (MSG_U(F_TITLE,"Graph title"),title); ! dia.newf_str (MSG_U(F_TOP,"HTML heading"),pagetop); dia.newf_num (MSG_U(F_MAXBYTES,"Maximum rate"),maxbytes); + int field_maxbyte1 = dia.getnb(); + dia.newf_str (MSG_U(F_MAXBYTES1,"Max rate for graph1 (opt)"),maxbytes1); + int field_maxbyte2 = dia.getnb(); + dia.newf_str (MSG_U(F_MAXBYTES2,"Max rate for graph2 (opt)"),maxbytes2); SNMPINFO sn; SSTRING command; *************** *** 247,251 **** dia.newf_title ("",MSG_U(T_SNMPREQ,"SNMP request")); dia.newf_str (MSG_U(F_HOST,"Host"),sn.host); ! if (sn.community.is_empty()) sn.community.setfrom ("public"); dia.newf_str (MSG_U(F_COMMUN,"SNMP community"),sn.community); FIELD_COMBO *comb = dia.newf_combo (MSG_U(F_FEATURE,"SNMP feature"),sn.key); --- 292,298 ---- dia.newf_title ("",MSG_U(T_SNMPREQ,"SNMP request")); dia.newf_str (MSG_U(F_HOST,"Host"),sn.host); ! if (sn.community.is_empty() && command.is_empty()){ ! sn.community.setfrom ("public"); ! } dia.newf_str (MSG_U(F_COMMUN,"SNMP community"),sn.community); FIELD_COMBO *comb = dia.newf_combo (MSG_U(F_FEATURE,"SNMP feature"),sn.key); *************** *** 255,258 **** --- 302,306 ---- {"1", MSG_U(I_ADAPTOR1,"Network adaptor 1")}, {"2", MSG_U(I_ADAPTOR2,"Network adaptor 2")}, + {"/x.y.z.w", MSG_U(I_BYIPNUMBER,"Network adaptor by IP number")}, {NULL,NULL}, }; *************** *** 262,266 **** } dia.newf_title ("",""); ! dia.newf_str (MSG_U(F_SPCCOMMAND,"Command"),command); int nof = 0; dia.delwhat (MSG_U(I_DELRECORD,"Select [Del] to delete this record")); --- 310,327 ---- } dia.newf_title ("",""); ! comb = dia.newf_combo (MSG_U(F_SPCCOMMAND,"Command"),command); ! { ! static const char *tb[][2]={ ! {"/usr/lib/linuxconf/lib/mrtg_loadavg", MSG_U(I_LOADAVG,"This computer load average")}, ! {"/usr/lib/linuxconf/lib/mrtg_memory.sh", MSG_U(I_MEMORY,"This computer memory & swap")}, ! {NULL,NULL}, ! }; ! for (int i=0; tb[i][0] != NULL; i++){ ! comb->addopt (tb[i][0],tb[i][1]); ! } ! } ! ! dia.newf_str (MSG_U(F_OPTIONS,"Options"),options); ! dia.newf_str (MSG_U(F_YLEGEND,"Y legend"),ylegend); int nof = 0; dia.delwhat (MSG_U(I_DELRECORD,"Select [Del] to delete this record")); *************** *** 284,287 **** --- 345,352 ---- nof = 0; xconf_error (MSG_U(E_NOSPACEID,"No space allowed in the ID")); + }else if (!mrtg_validnum (maxbytes1)){ + nof = field_maxbyte1; + }else if (!mrtg_validnum (maxbytes2)){ + nof = field_maxbyte2; }else{ int snmpfilled = 0; *************** *** 332,343 **** MRTG_CONF *one = getitem (i); const char *id = one->id.get(); ! comment_write (one->target_comment,fout); fprintf (fout,"Target[%s]: %s\n",id,one->target.get()); comment_write (one->maxbytes_comment,fout); fprintf (fout,"MaxBytes[%s]: %d\n",id,one->maxbytes); ! comment_write (one->title_comment,fout); fprintf (fout,"Title[%s]: %s\n",id,one->title.get()); ! comment_write (one->pagetop_comment,fout); fprintf (fout,"PageTop[%s]: %s\n",id,one->pagetop.get()); } comment_write (last_comment,fout); --- 397,420 ---- MRTG_CONF *one = getitem (i); const char *id = one->id.get(); ! comment_write (one->target.comment,fout); fprintf (fout,"Target[%s]: %s\n",id,one->target.get()); comment_write (one->maxbytes_comment,fout); fprintf (fout,"MaxBytes[%s]: %d\n",id,one->maxbytes); ! comment_write (one->maxbytes1.comment,fout); ! if (!one->maxbytes1.is_empty()){ ! fprintf (fout,"MaxBytes1[%s]: %s\n",id,one->maxbytes1.get()); ! } ! comment_write (one->maxbytes2.comment,fout); ! if (!one->maxbytes2.is_empty()){ ! fprintf (fout,"MaxBytes2[%s]: %s\n",id,one->maxbytes2.get()); ! } ! comment_write (one->title.comment,fout); fprintf (fout,"Title[%s]: %s\n",id,one->title.get()); ! comment_write (one->pagetop.comment,fout); fprintf (fout,"PageTop[%s]: %s\n",id,one->pagetop.get()); + comment_write (one->options.comment,fout); + fprintf (fout,"Options[%s]: %s\n",id,one->options.get()); + comment_write (one->ylegend.comment,fout); + fprintf (fout,"Ylegend[%s]: %s\n",id,one->ylegend.get()); } comment_write (last_comment,fout); *************** *** 354,357 **** --- 431,435 ---- if (dia == NULL){ dia = new DIALOG_LISTE; + dia->newf_head ("",MSG_U(H_MRTG,"Host\tFeature")); for (int i=0; ikey2,"sysvenh")==0){ ! ret = redhat_release() > 500 ? "1" : "0"; }else if (strcmp(rh->key2,"rpmvendor")==0){ ret = vendor_getid(); --- 265,269 ---- ret = "1"; }else if (strcmp(rh->key2,"sysvenh")==0){ ! ret = release > 500 ? "1" : "0"; }else if (strcmp(rh->key2,"rpmvendor")==0){ ret = vendor_getid(); diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/redhatppp/ppp.cc linuxconf-1.15/modules/redhatppp/ppp.cc *** linuxconf-1.14r4/modules/redhatppp/ppp.cc Fri Apr 2 15:19:19 1999 --- linuxconf-1.15/modules/redhatppp/ppp.cc Fri Apr 9 17:52:06 1999 *************** *** 442,446 **** // Now the dial command and the phone number pt = word2; ! while (isalpha(*pt)) pt++; phone.setfrom (pt); *pt = '\0'; --- 442,451 ---- // Now the dial command and the phone number pt = word2; ! while (*pt) pt++; ! if (pt > word2){ //look backwards for number ! pt--; ! while (isdigit(*pt) && pt > word2) pt--; ! if (!isdigit(*pt)) pt++; ! } phone.setfrom (pt); *pt = '\0'; diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/modules/stdmod.mak linuxconf-1.15/modules/stdmod.mak *** linuxconf-1.14r4/modules/stdmod.mak Wed Mar 3 22:10:08 1999 --- linuxconf-1.15/modules/stdmod.mak Sat Apr 17 22:56:05 1999 *************** *** 92,99 **** buildspec: ! sed s/MODULENAME/$(CURDIR)/ $(RPMSPEC) \ ! | sed s/PACKAGEREV/$(MODULE_REV)/ \ ! | sed s/SOURCE/$(SOURCEDIR).src.tar.gz/ \ ! | $(FILTERSPEC) >/usr/src/redhat/SPECS/$(SOURCEDIR).spec buildsrc: --- 92,103 ---- buildspec: ! grep MODULE_API_VERSION /usr/include/linuxconf/module.h | \ ! ( read a b MODULEREV && \ ! sed s/MODULENAME/$(CURDIR)/ $(RPMSPEC) \ ! | sed s/PACKAGEREV/$(MODULE_REV)/ \ ! | sed s/SOURCE/$(SOURCEDIR).src.tar.gz/ \ ! | sed s/LINUXCONFAPIREV/LINUXCONFAPIREV$$MODULEREV/ \ ! | $(FILTERSPEC) >/usr/src/redhat/SPECS/$(SOURCEDIR).spec \ ! ) buildsrc: diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/netconf/ifconfig.cc linuxconf-1.15/netconf/ifconfig.cc *** linuxconf-1.14r4/netconf/ifconfig.cc Wed Oct 28 23:43:28 1998 --- linuxconf-1.15/netconf/ifconfig.cc Mon Apr 19 10:50:31 1999 *************** *** 4,7 **** --- 4,8 ---- #include #include + #include #include #include "netconf.h" *************** *** 57,60 **** --- 58,62 ---- } } + close (skfd); } return ret; diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/rpmfiles/buildspec.sh linuxconf-1.15/rpmfiles/buildspec.sh *** linuxconf-1.14r4/rpmfiles/buildspec.sh Sun Nov 29 13:48:43 1998 --- linuxconf-1.15/rpmfiles/buildspec.sh Sat Apr 17 22:47:32 1999 *************** *** 17,23 **** echo No SPECS directory found, can\'t build rpm spec file fi echo Generating $OUT sed s/PACKAGEREV/$1/ $OUT for f in desc gui devel prep build install clean pre post preun postun files do --- 17,25 ---- echo No SPECS directory found, can\'t build rpm spec file fi + MODULEREV=`grep MODULE_API_VERSION misc/module.h | ( read a b c && echo $c )` echo Generating $OUT sed s/PACKAGEREV/$1/ $OUT for f in desc gui devel prep build install clean pre post preun postun files do diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/rpmfiles/rpm.spec-intro linuxconf-1.15/rpmfiles/rpm.spec-intro *** linuxconf-1.14r4/rpmfiles/rpm.spec-intro Thu Mar 11 13:54:34 1999 --- linuxconf-1.15/rpmfiles/rpm.spec-intro Sat Apr 17 22:29:41 1999 *************** *** 10,11 **** --- 10,13 ---- Vendor: Solucorp BuildRoot: /tmp/linuxconf-root + provides: LINUXCONFAPIREV + diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/rules.mak linuxconf-1.15/rules.mak *** linuxconf-1.14r4/rules.mak Fri Apr 9 10:12:07 1999 --- linuxconf-1.15/rules.mak Sat Apr 17 22:57:21 1999 *************** *** 10,15 **** endif CC=gcc ! LINUXCONF_REV=1.14 ! LINUXCONF_SUBREV=4 LINUXCONF_SUBSUBREV=0 ifeq ($(LINUXCONF_SUBSUBREV),0) --- 10,15 ---- endif CC=gcc ! LINUXCONF_REV=1.15 ! LINUXCONF_SUBREV=0 LINUXCONF_SUBSUBREV=0 ifeq ($(LINUXCONF_SUBSUBREV),0) diff -rc2P -x *.o -x *.a -x *.bak -x *~ -x *.help -x *.old -x *.nap -x *.nar -x *.nas -x *.gif -x *.class linuxconf-1.14r4/userconf/perm.cc linuxconf-1.15/userconf/perm.cc *** linuxconf-1.14r4/userconf/perm.cc Mon Mar 29 10:12:12 1999 --- linuxconf-1.15/userconf/perm.cc Mon Apr 19 10:51:51 1999 *************** *** 205,211 **** if (perm_getupass (users,"root",crypt_pass.root) == -1){ xconf_error (MSG_U(E_NOROOT ! ,"No root user in /etc/passwd\n" ! "Better to let you in")); ! ret = 1; }else if (crypt_pass.root[0] != '\0'){ if (uname != NULL --- 205,211 ---- if (perm_getupass (users,"root",crypt_pass.root) == -1){ xconf_error (MSG_U(E_NOROOT ! ,"No root user defined in /etc/passwd\n" ! "Can't let you in!")); ! ret = 0; }else if (crypt_pass.root[0] != '\0'){ if (uname != NULL