From 250ddd2d5f16d035f2e189c3384a98f2ebd0842e Mon Sep 17 00:00:00 2001 From: nalin Date: Aug 22 2001 23:28:31 +0000 Subject: warn about nscd the same way we do about nss_ldap and pam_krb5 reorder some internal code so that it's easier to maintain change help string about the --probe option to make it clearer that using it doesn't actually set any options update translations from CVS --- diff --git a/authconfig.c b/authconfig.c index 754bcef..0addad9 100644 --- a/authconfig.c +++ b/authconfig.c @@ -925,7 +925,7 @@ main(int argc, const char **argv) { "kickstart", '\0', POPT_ARG_NONE, &kickstart, 0, i18n("don't display user interface"), NULL}, { "probe", '\0', POPT_ARG_NONE, &probe, 0, - i18n("probe network for defaults"), NULL}, + i18n("probe network for defaults and print them"), NULL}, #ifdef LOCAL_POLICIES { "enablelocal", '\0', POPT_ARG_NONE, &enableLocal, 0, i18n("use locally-defined policies"), NULL}, diff --git a/authconfig.spec b/authconfig.spec index 9f9d6ee..b8d0245 100644 --- a/authconfig.spec +++ b/authconfig.spec @@ -1,6 +1,6 @@ Summary: Text-mode tool for setting up NIS and shadow passwords. Name: authconfig -Version: 4.1.15 +Version: 4.1.16 Release: 1 License: GPL ExclusiveOS: Linux @@ -40,8 +40,11 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man8/* %changelog -* Wed Aug 21 2001 Nalin Dahyabhai +* Wed Aug 21 2001 Nalin Dahyabhai 4.1.16-1 - warn about nscd the same way we do about nss_ldap and pam_krb5 +- reorder some internal code so that it's easier to maintain +- change help string about the --probe option to make it clearer that using + it doesn't actually set any options - update translations from CVS * Tue Aug 20 2001 Nalin Dahyabhai 4.1.15-1 diff --git a/authinfo.c b/authinfo.c index f111a90..e781b9c 100644 --- a/authinfo.c +++ b/authinfo.c @@ -102,7 +102,8 @@ authInfoReadSMB(struct authInfoType *info) return FALSE; } - /* Read three lines. */ + /* Read three lines. The first is the workgroup, and subsequent + * lines are the PDC and BDC, respectively. */ if(fgets(buf, sizeof(buf), fp) != NULL) { p = strchr(buf, '\n'); if(p != NULL) { @@ -160,7 +161,7 @@ authInfoReadNIS(struct authInfoType *info) /* Skip initial whitespace. */ for(p = buf; (isspace(*p) && (*p != '\0')); p++); - /* Is it a "ypserver" statement? */ + /* Is it a "ypserver" statement? If so, extract the server. */ if(strncmp("ypserver", p, 8) == 0) { /* Skip intervening whitespace. */ for(p += 8; (isspace(*p) && (*p != '\0')); p++); @@ -284,6 +285,8 @@ authInfoReadLDAP(struct authInfoType *info) continue; } + /* We'll pull MD5/DES crypt ("pam_password") from the config + * file, or from the pam_unix PAM config lines. */ memset(buf, '\0', sizeof(buf)); } @@ -339,7 +342,7 @@ authInfoReadKerberos(struct authInfoType *info) continue; } - /* Check for the default realm keyword. */ + /* Check for the default realm setting. */ if(section != NULL) if(strcmp(section, "libdefaults") == 0) if(strncmp(p, "default_realm", 13) == 0) { @@ -479,6 +482,7 @@ authInfoReadNSS(struct authInfoType *info) break; } } + info->enableWinBind = (strstr(nss_config, "winbind") != NULL); info->enableNIS3 = (strstr(nss_config, "nisplus") != NULL); } @@ -557,6 +561,14 @@ authInfoReadPAM(struct authInfoType *authInfo) for(q = p; !isspace(*q) && (*q != '\0'); q++); /* module */ if(q - p < sizeof(module)) { strncpy(module, p, q - p); + if(strstr(module, "pam_afs")) { + authInfo->enableAFS = TRUE; + continue; + } + if(strstr(module, "pam_afs.krb")) { + authInfo->enableAFSKerberos = TRUE; + continue; + } if(strstr(module, "pam_krb5")) { authInfo->enableKerberos = TRUE; continue; @@ -600,10 +612,32 @@ authInfoReadPAM(struct authInfoType *authInfo) fclose(fp); + /* Read settings from our config file, which override anything we + * figure out by examination. */ if(stat(SYSCONFDIR "/sysconfig/authconfig", &st) == 0) { sv = svNewFile(SYSCONFDIR "/sysconfig/authconfig"); } if(sv != NULL) { + tmp = svGetValue(sv, "USEAFS"); + if(tmp != NULL) { + if(strcmp(tmp, "yes") == 0) { + authInfo->enableAFS = TRUE; + } + if(strcmp(tmp, "no") == 0) { + authInfo->enableAFS = FALSE; + } + free(tmp); + } + tmp = svGetValue(sv, "USEAFSKERBEROS"); + if(tmp != NULL) { + if(strcmp(tmp, "yes") == 0) { + authInfo->enableAFSKerberos = TRUE; + } + if(strcmp(tmp, "no") == 0) { + authInfo->enableAFSKerberos = FALSE; + } + free(tmp); + } tmp = svGetValue(sv, "USEHESIOD"); if(tmp != NULL) { if(strcmp(tmp, "yes") == 0) { @@ -614,33 +648,33 @@ authInfoReadPAM(struct authInfoType *authInfo) } free(tmp); } - tmp = svGetValue(sv, "USENIS"); + tmp = svGetValue(sv, "USEKERBEROS"); if(tmp != NULL) { if(strcmp(tmp, "yes") == 0) { - authInfo->enableNIS = TRUE; + authInfo->enableKerberos = TRUE; } if(strcmp(tmp, "no") == 0) { - authInfo->enableNIS = FALSE; + authInfo->enableKerberos = FALSE; } free(tmp); } - tmp = svGetValue(sv, "USESHADOW"); + tmp = svGetValue(sv, "USELDAP"); if(tmp != NULL) { if(strcmp(tmp, "yes") == 0) { - authInfo->enableShadow = TRUE; + authInfo->enableLDAP = TRUE; } if(strcmp(tmp, "no") == 0) { - authInfo->enableShadow = FALSE; + authInfo->enableLDAP = FALSE; } free(tmp); } - tmp = svGetValue(sv, "USESMBAUTH"); + tmp = svGetValue(sv, "USELDAPAUTH"); if(tmp != NULL) { if(strcmp(tmp, "yes") == 0) { - authInfo->enableSMB = TRUE; + authInfo->enableLDAPAuth = TRUE; } if(strcmp(tmp, "no") == 0) { - authInfo->enableSMB = FALSE; + authInfo->enableLDAPAuth = FALSE; } free(tmp); } @@ -654,23 +688,43 @@ authInfoReadPAM(struct authInfoType *authInfo) } free(tmp); } - tmp = svGetValue(sv, "USEKERBEROS"); + tmp = svGetValue(sv, "USENIS"); if(tmp != NULL) { if(strcmp(tmp, "yes") == 0) { - authInfo->enableKerberos = TRUE; + authInfo->enableNIS = TRUE; } if(strcmp(tmp, "no") == 0) { - authInfo->enableKerberos = FALSE; + authInfo->enableNIS = FALSE; } free(tmp); } - tmp = svGetValue(sv, "USELDAPAUTH"); + tmp = svGetValue(sv, "USESHADOW"); if(tmp != NULL) { if(strcmp(tmp, "yes") == 0) { - authInfo->enableLDAPAuth = TRUE; + authInfo->enableShadow = TRUE; } if(strcmp(tmp, "no") == 0) { - authInfo->enableLDAPAuth = FALSE; + authInfo->enableShadow = FALSE; + } + free(tmp); + } + tmp = svGetValue(sv, "USESMBAUTH"); + if(tmp != NULL) { + if(strcmp(tmp, "yes") == 0) { + authInfo->enableSMB = TRUE; + } + if(strcmp(tmp, "no") == 0) { + authInfo->enableSMB = FALSE; + } + free(tmp); + } + tmp = svGetValue(sv, "USEWINBIND"); + if(tmp != NULL) { + if(strcmp(tmp, "yes") == 0) { + authInfo->enableWinBind = TRUE; + } + if(strcmp(tmp, "no") == 0) { + authInfo->enableWinBind = FALSE; } free(tmp); } @@ -1624,9 +1678,12 @@ authInfoWriteNSS(struct authInfoType *info) l += strlen(" winbind") * 8; obuf = g_malloc0(st.st_size + 1 + l); - /* Determine what we want in that file for most of the databases. */ + /* Determine what we want in that file for most of the databases. If + * we're using DB, we're doing it for speed, so put it in first. Then + * comes files. Then everything else in reverse alphabetic order. */ if(info->enableDB) strcat(normal, " db"); strcat(normal, " files"); + if(info->enableWinBind) strcat(normal, " winbind"); if(info->enableNIS3) strcat(normal, " nisplus"); if(info->enableNIS) strcat(normal, " nis"); if(info->enableLDAP) strcat(normal, " ldap"); @@ -1807,19 +1864,24 @@ static const char *argv_krb5_auth[] = { NULL, }; +static const char *argv_krb5_password[] = { + "use_authtok", + NULL, +}; + static const char *argv_krb5afs_auth[] = { "use_first_pass", "tokens", NULL, }; -static const char *argv_krb5_password[] = { - "use_authtok", +static const char *argv_ldap_auth[] = { + "use_first_pass", NULL, }; -static const char *argv_ldap_auth[] = { - "use_first_pass", +static const char *argv_ldap_password[] = { + "use_authtok", NULL, }; @@ -1839,17 +1901,26 @@ static const char *argv_winbind_password[] = { NULL, }; -static const char *argv_ldap_password[] = { - "use_authtok", - NULL, -}; - static const char *argv_cracklib_password[] = { "retry=3", "type=", NULL, }; +static const char *argv_afs_auth[] = { + "use_first_pass", + NULL, +}; + +static const char *argv_afs_password[] = { + /* It looks like current pam_afs (from OpenAFS 1.1.1) doesn't support + * "use_authtok", so it'll probably interact badly with pam_cracklib, + * but thanks to stack-traversal changes in Linux-PAM 0.75 and higher, + * the password-changing should work anyway. */ + "use_first_pass", + NULL, +}; + /* Enumerations for PAM control flags and stack names. */ enum pam_function_type { auth, @@ -1858,7 +1929,8 @@ enum pam_function_type { password, }; -/* The list of stacks, module flags, and arguments, if there are any. */ +/* The list of stacks, module flags, and arguments, if there are any. Here + * we put pam_unix first, and the rest in alphabetic order. */ static struct { gboolean mandatory; enum pam_function_type stack; @@ -1866,15 +1938,19 @@ static struct { const char *name; const char **argv; } standard_pam_modules[] = { + {TRUE, auth, LOGIC_REQUIRED, + "env", NULL}, #ifdef LOCAL_POLICIES {FALSE, auth, LOGIC_REQUIRED, "stack", argv_local_all}, #endif - {TRUE, auth, LOGIC_REQUIRED, - "env", NULL}, {TRUE, auth, LOGIC_SUFFICIENT, "unix", argv_unix_auth}, {FALSE, auth, LOGIC_SUFFICIENT, + "afs", argv_afs_auth}, + {FALSE, auth, LOGIC_SUFFICIENT, + "afs.krb", argv_afs_auth}, + {FALSE, auth, LOGIC_SUFFICIENT, "krb5", argv_krb5_auth}, {FALSE, auth, LOGIC_SUFFICIENT, "krb5afs", argv_krb5afs_auth}, @@ -1905,6 +1981,10 @@ static struct { {TRUE, password, LOGIC_SUFFICIENT, "unix", argv_unix_password}, {FALSE, password, LOGIC_SUFFICIENT, + "afs", argv_afs_password}, + {FALSE, password, LOGIC_SUFFICIENT, + "afs.krb", argv_afs_password}, + {FALSE, password, LOGIC_SUFFICIENT, "krb5", argv_krb5_password}, {FALSE, password, LOGIC_SUFFICIENT, "krb5afs", argv_krb5_password}, @@ -1924,6 +2004,10 @@ static struct { {TRUE, session, LOGIC_REQUIRED, "unix", NULL}, {FALSE, session, LOGIC_OPTIONAL, + "afs", NULL}, + {FALSE, session, LOGIC_OPTIONAL, + "afs.krb", NULL}, + {FALSE, session, LOGIC_OPTIONAL, "krb5", NULL}, {FALSE, session, LOGIC_OPTIONAL, "krb5afs", NULL}, @@ -2048,18 +2132,24 @@ gboolean authInfoWritePAM(struct authInfoType *authInfo) strcat(obuf, "\n"); } if(standard_pam_modules[i].mandatory || + (authInfo->enableAFS && + (strcmp("afs", standard_pam_modules[i].name) == 0)) || + (authInfo->enableAFSKerberos && + (strcmp("afs.krb", standard_pam_modules[i].name) == 0)) || (authInfo->enableKerberos && !have_afs && (strcmp("krb5", standard_pam_modules[i].name) == 0)) || (authInfo->enableKerberos && have_afs && (strcmp("krb5afs", standard_pam_modules[i].name) == 0)) || + (authInfo->enableLDAPAuth && + (strcmp("ldap", standard_pam_modules[i].name) == 0)) || #ifdef LOCAL_POLICIES (authInfo->enableLocal && (strcmp("stack", standard_pam_modules[i].name) == 0)) || #endif (authInfo->enableSMB && (strcmp("smb_auth", standard_pam_modules[i].name) == 0)) || - (authInfo->enableLDAPAuth && - (strcmp("ldap", standard_pam_modules[i].name) == 0))) { + (authInfo->enableWinBind && + (strcmp("winbind", standard_pam_modules[i].name) == 0))) { fmt_standard_pam_module(i, obuf, authInfo); } } @@ -2072,20 +2162,36 @@ gboolean authInfoWritePAM(struct authInfoType *authInfo) sv = svCreateFile(SYSCONFDIR "/sysconfig/authconfig"); if(sv != NULL) { +#ifdef EXPERIMENTAL + /* We don't save these settings yet, because we have no + * way to present the user with the option. */ + svSetValue(sv, "USEAFS", + authInfo->enableAFS ? "yes" : "no"); + svSetValue(sv, "USEAFSKERBEROS", + authInfo->enableAFSKerberos ? "yes" : "no"); +#endif svSetValue(sv, "USEHESIOD", authInfo->enableHesiod ? "yes" : "no"); - svSetValue(sv, "USENIS", - authInfo->enableNIS ? "yes" : "no"); + svSetValue(sv, "USELDAP", + authInfo->enableLDAP ? "yes" : "no"); svSetValue(sv, "USEMD5", authInfo->enableMD5 ? "yes" : "no"); - svSetValue(sv, "USESHADOW", - authInfo->enableShadow ? "yes" : "no"); + svSetValue(sv, "USENIS", + authInfo->enableNIS ? "yes" : "no"); svSetValue(sv, "USEKERBEROS", authInfo->enableKerberos ? "yes" : "no"); svSetValue(sv, "USELDAPAUTH", authInfo->enableLDAPAuth ? "yes" : "no"); + svSetValue(sv, "USESHADOW", + authInfo->enableShadow ? "yes" : "no"); svSetValue(sv, "USESMBAUTH", authInfo->enableSMB ? "yes" : "no"); +#ifdef EXPERIMENTAL + /* We don't save these settings yet, because we have no + * way to present the user with the option. */ + svSetValue(sv, "USEWINBIND", + authInfo->enableWinBind ? "yes" : "no"); +#endif svWriteFile(sv, 0644); svCloseFile(sv); } diff --git a/authinfo.h b/authinfo.h index 25d5052..af2acd2 100644 --- a/authinfo.h +++ b/authinfo.h @@ -73,14 +73,17 @@ struct authInfoType { gboolean enableLDAPS; gboolean enableNIS; gboolean enableNIS3; + gboolean enableWinBind; /* Authentication setup. */ - gboolean enableMD5; - gboolean enableShadow; + gboolean enableAFS; + gboolean enableAFSKerberos; gboolean enableBigCrypt; gboolean enableKerberos; gboolean enableLDAPAuth; + gboolean enableMD5; gboolean enableSMB; + gboolean enableShadow; #ifdef LOCAL_POLICIES gboolean enableLocal; #endif @@ -98,7 +101,6 @@ gboolean authInfoReadNIS(struct authInfoType *info); gboolean authInfoReadSMB(struct authInfoType *info); gboolean authInfoReadLDAP(struct authInfoType *info); gboolean authInfoReadKerberos(struct authInfoType *info); -gboolean authInfoReadWinBind(struct authInfoType *info); gboolean authInfoReadNSS(struct authInfoType *info); gboolean authInfoReadPAM(struct authInfoType *info); gboolean authInfoReadNetwork(struct authInfoType *info); diff --git a/po/authconfig.pot b/po/authconfig.pot index acd8b7d..d0b60c3 100644 --- a/po/authconfig.pot +++ b/po/authconfig.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-08-22 18:08-0400\n" +"POT-Creation-Date: 2001-08-22 19:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -294,7 +294,7 @@ msgid "don't display user interface" msgstr "" #: ../authconfig.c:928 -msgid "probe network for defaults" +msgid "probe network for defaults and print them" msgstr "" #: ../authconfig.c:931 diff --git a/po/cs.po b/po/cs.po index 8b4e35a..1436028 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig unknown\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-04-02 02:48+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "Varov�n�" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -72,291 +72,292 @@ msgid "Cache Information" msgstr "Informace o cache" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Pou��t NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Pou��t LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Pou��t TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Pou��t Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Dal��" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Zp�t" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Zru�it" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Konfigurace informac� o u�ivateli" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Pou��vat st�nov� hesla" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Povolit MD5 hesla" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Pou��t LDAP autentizaci" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Pou��t Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "Pou��t SMB autentizaci" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Konfigurace autentizace" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "povolit st�nov� hesla" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "zak�zat st�nov� hesla" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "povolit MD5 hesla" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "zak�zat MD5 hesla\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "povolit NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "zak�zat NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "implicitn� NIS dom�na" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "implicitn� NIS server\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "povolit LDAP pro informace o u�ivatel�ch" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "zak�zat LDAP pro informace o u�ivatel�ch" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "povolit pou�it� TLS s LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "zak�zat pou�it� TLS s LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "Povolit LDAP pro autentizaci" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "zak�zat LDAP pro autentizaci" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "implicitn� LDAP server" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "implicitn� DN b�ze pro LDAP\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "povolit autentizaci Kerberosem" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "zak�zat autentizaci Kerberosem" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "implicitn� KDC pro Kerberos" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "implicitn� admin server pro Kerberos" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "implicitn� realm pro Kerberos\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "povolit implicitn� SMB autentizaci" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "zak�zat implicitn� SMB autentizaci" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "autentiza�n� servery pro pracovn� skupinu jsou v" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "jm�na server�, proti kter�m se autentizovat\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "povolit Hesiod pro informace o u�ivatel�ch" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "zak�zat Hesiod pro informace o u�ivatel�ch" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "implicitn� LHS pro Hesiod" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "implicitn� RHS pro Hesiod\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "povolit implicitn� cachov�n� informac� o u�ivatel�ch" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "zak�zat implicitn� cachov�n� informac� o u�ivatel�ch\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "nestartovat/nevyp�nat portmap, ypbind a nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "nezobrazovat u�ivatelsk� interface" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "implicitn� hodnoty z�skat ze s�t�" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "pou��t lok�ln� definovan� politiky" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "nepou��vat lok�ln� definovan� politiky" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: chybn� argument %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: pokou��m se pokra�ovat\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: neo�ek�van� argument\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: m��e b�t spu�t�n pouze u�ivatelem root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kritick� chyba p�i �ten� %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: nemohu na��st informace z cache" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" " / p�ep�n� mezi polo�kami | v�b�r | pokra�ovat " -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "dialog byl stornov�n\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kritick� chyba p�i ukl�d�n� nastaven� cache" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kritick� chyba p�i z�pisu %s/%s" diff --git a/po/da.po b/po/da.po index c182a0d..e9f079e 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: Sun Jan 21 2001 01:36:08+0200\n" "Last-Translator: Martin Hansen \n" "Language-Team: Dansk \n" @@ -23,7 +23,7 @@ msgstr "" msgid "Warning" msgstr "Advarsel" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -74,296 +74,296 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Benyt NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Benyt LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Benyt TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Benyt Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "N�ste" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Tilbage" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Annull�r" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Konfiguration af brugerinfo" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Benyt skyggeadgangskoder" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Benyt MD5-adgangskoder" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Benyt LDAP-godkendelse" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Benyt Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Benyt LDAP-godkendelse" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Godkendelseskonfiguration" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "anvend skyggeadgangskoder som standard" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "anvend ikke skyggeadgangskoder som standard" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "anvend MD5-adgangskoder som standard" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "anvend ikke MD5-adgangskoder som standard\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "anvend NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "anvend ikke NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "standard-NIS-dom�ne" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "standard-NIS-tjener\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "Aktiv�r LDAP til bruger information som standard" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "Deaktiv�r LDAP til bruger information som standard" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "aktiv�r brug af TLS med LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "Deaktiv�r brug af TLS med LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "Benyt LDAP-godkendelse" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "Benyt LDAP-godkendelse" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "standard-LDAP-tjener" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "Standard LDAP basal DN\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "aktiv�r kerberos adgangstilladelse som standard" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "Deaktiv�r kerberos adgangstilladelse som standard" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "standard kerberos KDC" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "standard kerberos admin tjener" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "standard kerberos realm\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "aktiv�r kerberos adgangstilladelse som standard" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "Benyt LDAP-godkendelse" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "aktiv�r hesiod til bruger information som standard" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "deaktiv�r hesiod til bruger information som standard" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "standard hesiod LHS" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "standard-hesiod RHS\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "aktiv�r hesiod til bruger information som standard" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "deaktiv�r hesiod til bruger information som standard" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "start/stop ikke portmap, ypbind og nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "vis ikke brugerflade" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "brug lokalt definerede retningslinier" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "brug ikke lokalt definerede retningslinier" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: d�rligt argument %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: uventet argument\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: kan kun k�res som root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kritisk fejl ved l�sning af %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Konfiguration af brugerinfo" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" " / mellem elementer | v�lger | n�ste sk�rm" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "Dialog blev annulleret\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kritisk fejl ved l�sning af %s/%s" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kritisk fejl ved skrivning af %s/%s" diff --git a/po/de.po b/po/de.po index 31e0dff..06da025 100644 --- a/po/de.po +++ b/po/de.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Installer 7.0\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-07-24 12:45+0100\n" "Last-Translator: Claudia Krug \n" "Language-Team: German \n" @@ -29,7 +29,7 @@ msgid "Warning" msgstr "Warnung" # ../authconfig.c:146 ../authconfig.c:507 ../authconfig.c:512 -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "OK" @@ -89,294 +89,295 @@ msgstr "Cache Informationen" # ../authconfig.c:293 #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "NIS verwenden" # ../authconfig.c:316 -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "LDAP verwenden" # ../authconfig.c:293 -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "TLS verwenden" # ../authconfig.c:349 #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Hesiod verwenden" # ../authconfig.c:370 -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Weiter" # ../authconfig.c:371 ../authconfig.c:508 ../authconfig.c:513 -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Zur�ck" # ../authconfig.c:371 ../authconfig.c:509 -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Abbrechen" # ../authconfig.c:289 -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Konfiguration der Benutzerinformationen" # ../authconfig.c:435 -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Shadow-Kennw�rter verwenden" # ../authconfig.c:439 -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "MD5-Kennw�rter verwenden" # ../authconfig.c:444 -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "LDAP Authentit�t benutzen" # ../authconfig.c:480 -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Kerberos 5 verwenden" # ../authconfig.c:444 -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "SMB-Authentifizierung benutzen" # ../authconfig.c:431 -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Sicherheitspr�fung konfigurieren" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "Standard shadowed-Kennw�rter freigeben " -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "Standard shadowed-Kennw�rter sperren " -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "Standard MD5 Kennw�rter freigeben" # ../authconfig.c:439 -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "Standard MD5-Kennw�rter sperren\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "NIS freigeben" # ../authconfig.c:293 -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "NIS sperren" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "Standard NIS Dom�ne" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "Standard NIS Server\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "LDAP f�r Benutzerinformationen als Standard freigeben" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "LDAP f�r Benutzerinformationen als Standard sperren" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "Benutzung der TLS mit LDAP freigeben" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "Benutzung der TLS mit LDAP sperren" # ../authconfig.c:444 -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "LDAP zur Authentifizierung als Standard freigeben" # ../authconfig.c:444 -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "LDAP zur Authentifizierung als Standard sperren" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "Standard LDAP Server" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "Standard LDAP Basis-DN\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "Kerberosauthentifizierung als Standard freigeben" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "Kerberosauthentifizierung als Standard sperren" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "Standard Kerberos KDC" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "Standard Kerberos Admin-Server " -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "Standard Kerberos Bereich\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" # ../authconfig.c:444 -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "SMB zur Authentifizierung als Standard freigeben" # ../authconfig.c:444 -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "SMB zur Authentifizierung als Standard sperren" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "Arbeitsgruppen-Authentifizierungsserver sind in" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "Namen der zu authentifizierenden Server\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "Hesiod zur Benutzerinformation als Standard freigeben" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "Hesiod zur Benutzerinformation als Standard sperren" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "Standard Hesiod LHS" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "Standard Hesiod RHS\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "Cache zur Benutzerinformation als Standard freigeben" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "Cache zur Benutzerinformation als Standard sperren\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "portmap, ypbind, und nscd nicht starten/anhalten" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "Benutzerinterface nicht zeigen" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "Netzwerk auf Standards �berpr�fen" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "Benutzen Sie lokal-definierte Policen " -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "Benutzen Sie keine lokal-definierte Policen " # ../authconfig.c:738 -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: ung�ltiges Argument %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: Versuch zum Fortfahren\n" # ../authconfig.c:745 -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: unerwartetes Argument\n" # ../authconfig.c:757 -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: kann nur als Root ausgef�hrt werden\n" # ../authconfig.c:819 -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kritischer Fehler beim Lesen von %s/%s" # ../authconfig.c:289 -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: Cacheinformationen k�nnen nicht gelesen werden" # ../authconfig.c:872 -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -384,25 +385,25 @@ msgstr "" " / Zwischen Elementen wechseln | Ausw�hlen | " " Weiter" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." # ../authconfig.c:880 -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "Dialog wurde entfernt\n" # ../authconfig.c:819 -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kritischer Fehler bei der Aufzeichnung der Cacheeinstellungen" # ../authconfig.c:980 -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kritischer Fehler beim Schreiben von %s/%s" diff --git a/po/es.po b/po/es.po index 1d48525..6dff749 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-01-30 10:10+1\n" "Last-Translator: Jos� Rodr�guez \n" "Language-Team: Spanish \n" @@ -27,7 +27,7 @@ msgstr "" msgid "Warning" msgstr "Atenci�n" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Aceptar" @@ -77,269 +77,270 @@ msgid "Cache Information" msgstr "Informaci�n de la cach�" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Utilizar NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Utilizar LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Utilizar TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Utilizar Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Siguiente" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Anterior" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Cancelar" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Configuraci�n de la informaci�n de usuario" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Utilizar contrase�as shadow" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Utilizar contrase�as MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Utilizar Autenticaci�n LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Utilizar Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "Utilizar Autentificaci�n SMB" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Configuraci�n de la autenticaci�n" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "habilitar contrase�as shadow por defecto" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "deshabilitar contrase�as sadow por defecto" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "habilitar contrase�as MD5 por defecto" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "deshabilitar contrase�as MD5 por defecto\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "habilitar NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "deshabilitar NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "dominio NIS predeterminado" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "servidor NIS predeterminado\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "habilitar LDAP para la informaci�n del usuario por defecto" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "deshabilitar LDAP para la informaci�n del usuario por defecto" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "habilitar el uso de TLS con LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "deshabilitar el uso de TLS con LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "habilitar LDAP para la autentificaci�n por defecto" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "deshabilitar la autentificaci�n por defecto" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "servidor LDAP predeterminado" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "DN base predeterminado de LDAP\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "habilitar la autenticaci�n con kerberos por defecto" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "deshabilitar la autenticaci�n con kerberos por defecto" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "KDC predeterminado de kerberos" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "servidor de administraci�n predeterminador de kerberos" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "entorno predeterminado de Kerberos\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "habilitar autentificaci�n SMB por defecto" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "deshabilitar autentificaci�n SMB por defecto" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "grupo de trabajo donde est�n los servidores de autenticaci�n" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "nombres de los servidores contra los cuales autenticar\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "habilitar hesiod por defecto para la informaci�n de usuario" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "deshabilitar hesiod por defecto para la informaci�n del usuario" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "LHS predeterminado de hesiod" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "RHS predeterminado de hesiod\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "habilitar por defecto la cach� de informaci�n de usuario" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "deshabilitar por defecto la cach� de informaci�n de usuario\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "no iniciar/parar portmap, ypbind, y nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "no visualizar la interfaz de usuario" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "probar los valores por defecto de la red" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "utilizar pol�ticas definidas localmente" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "no utilizar pol�tica definidas localmente" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: argumento err�neo %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: intentando continuar\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: argumento inesperado\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: s�lo puede ser ejecutado como root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: error grave al leer %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: ha sido imposible leer la configuraci�n de cach�" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -347,22 +348,22 @@ msgstr "" " / cambiar elementos | seleccionar | siguiente " "pantalla" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "di�logo cancelado\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: error grave" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: error grave al escribir %s/%s" diff --git a/po/eu_ES.po b/po/eu_ES.po index 6debe5c..2451713 100644 --- a/po/eu_ES.po +++ b/po/eu_ES.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.4\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-02-09 17:19-0500\n" "Last-Translator: Translator B \n" "Language-Team: Translator B \n" @@ -24,7 +24,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "" @@ -74,290 +74,290 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "" diff --git a/po/fi.po b/po/fi.po index ffe6f05..97bebcc 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.4\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-02-09 17:22-0500\n" "Last-Translator: Nalin Dahyabhai \n" "Language-Team: English \n" @@ -20,7 +20,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "" @@ -70,290 +70,290 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "" diff --git a/po/fr.po b/po/fr.po index d7b95aa..795b816 100644 --- a/po/fr.po +++ b/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Installer 7.0\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-07-25 15:35+0100\n" "Last-Translator: Bettina De Monti \n" "Language-Team: French \n" @@ -27,7 +27,7 @@ msgstr "" msgid "Warning" msgstr "Avertissement" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "OK" @@ -77,269 +77,270 @@ msgid "Cache Information" msgstr "Informations de cache" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Utiliser NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Utiliser LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Utiliser TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Utiliser Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Suivant" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Retour" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Annuler" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Configuration des informations utilisateur" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Utiliser des mots de passe masqu�s" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Utiliser des mots de passe MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Utiliser l'authentification LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Utiliser Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "Utiliser l'authentification SMB" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Configuration de l'authentification" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "activer les mots de passe masqu�s par d�faut" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "d�sactiver les mots de passe masqu�s par d�faut" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "activer les mots de passe MD5 par d�faut" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "d�sactiver les mots de passe MD5 par d�faut\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "activer NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "d�sactiver NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "domaine NIS par d�faut" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "serveur NIS par d�faut\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "activer LDAP pour les informations de l'utilisateur par d�faut" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "d�sactiver LDAP pour les informations utilisateur par d�faut" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "activer l'utilisation de TLS avec LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "d�sactiver l'utilisation de TLS avec LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "activer LDAP pour l'authentification par default" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "d�sactiver LDAP pour l'authentification par default" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "serveur LDAP par d�faut" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "DN de base LDAP par d�faut\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "activer l'authentification via kerberos par d�faut" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "d�sactiver l'authentification via kerberos par d�faut" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "KDC kerberos par d�faut" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "serveur admin kerberos par d�faut" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "zone kerberos par d�faut\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "activer LDAP pour l'authentification par default" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "d�sactiver LDAP pour l'authentification par default" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "les serveurs d'authentification de groupe de travail sont enclench�s" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "noms des serveurs � authentifier contre\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "activer hesiod pour les informations utilisateur par d�faut" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "d�sactiver hesiod pour les informations utilisateur par d�faut" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "LHS hesiod par d�faut" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "RHS hesiod par d�faut\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "activer hesiod pour les informations utilisateur par d�faut" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "d�sactiver hesiod pour les informations utilisateur par d�faut\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "ne pas lancer/arr�ter portmap, ypbind et nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "ne pas afficher l'interface utilisateur" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "essayer le r�seau pour chercher les d�fauts" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "utiliser les politiques d�finies localement" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "ne pas utiliser les politiques d�finies localement" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s : argument incorrect %s : %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s : essaie de continuer\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s : argument impr�vu\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s : ne peut �tre lanc� qu'en tant que root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s : erreur critique lors de la lecture de %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: Configuration des informations utilisateur" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -347,22 +348,22 @@ msgstr "" "/ Changer d'�l�ment | S�lectionner | Ecran " "suivant" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "dialogue annul�\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s : erreur critique lors de la lecture " -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s : erreur critique lors de l'�criture de %s/%s" diff --git a/po/gl.po b/po/gl.po index 529b6a4..1f8d4e0 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-01-14 17:12+0100\n" "Last-Translator: Jes�s Bravo �lvarez \n" "Language-Team: Galician \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "Aviso" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Aceptar" @@ -73,296 +73,296 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Usar NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Usar LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Usar TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Usar Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Seguinte" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Anterior" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Cancelar" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Configuraci�n da Informaci�n de Usuario" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Usar Contrasinais Shadow" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Usar Contrasinais MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Usar Autentificaci�n LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Usar Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Usar Autentificaci�n LDAP" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Configuraci�n da Autentificaci�n" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "activar por defecto os contrasinais shadow" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "desactivar por defecto os contrasinais shadow" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "activar por defecto os contrasinais MD5" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "desactivar por defecto os contrasinais MD5\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "habilitar NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "deshabilitar NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "dominio NIS por omisi�n" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "servidor NIS por omisi�n\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "activar por defecto LDAP para informaci�n de usuario" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "desactivar por defecto LDAP para informaci�n de usuario" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "activar o uso de TLS con LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "desactivar o uso de TLS con LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "activar por defecto LDAP para autenticaci�n" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "desactivar por defecto LDAP para autenticaci�n" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "servidor LDAP por omisi�n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "DN base de LDAP por omisi�n\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "activar por defecto a autenticaci�n kerberos" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "desactivar por defecto a autenticaci�n kerberos" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "KDC de kerberos por omisi�n" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "servidor de administraci�n de kerberos por omisi�n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "realm de kerberos por defecto\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "activar por defecto a autenticaci�n kerberos" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "desactivar por defecto LDAP para autenticaci�n" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "activar por defecto hesiod para informaci�n de usuario" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "desactivar por defecto hesiod para informaci�n de usuario" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "LHS de hesiod por omisi�n" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "RHS de hesiod por omisi�n\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "activar por defecto hesiod para informaci�n de usuario" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "desactivar por defecto hesiod para informaci�n de usuario" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "non iniciar/parar o portmap, o ypbind nin o nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "non amosar a interface de usuario" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "usar as pol�ticas definidas localmente" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "non usar as pol�ticas definidas localmente" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: argumento %s err�neo: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: argumento non esperado\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: s� se pode executar como root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: erro cr�tico lendo %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Configuraci�n da Informaci�n de Usuario" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" " / entre elementos | escoller | seg. pantalla" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "o di�logo foi cancelado\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: erro cr�tico lendo %s/%s" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: erro cr�tico escribindo %s/%s" diff --git a/po/hu.po b/po/hu.po index 0c056d1..a4806b7 100644 --- a/po/hu.po +++ b/po/hu.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2000-08-04 00:04+0200\n" "Last-Translator: L�szl� N�meth \n" "Language-Team: Hungarian\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "Figyelem" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -73,279 +73,279 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "NIS haszn�lata" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "LDAP haszn�lata" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 #, fuzzy msgid "Use TLS" msgstr "NIS haszn�lata" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Hesiod haszn�lata" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "K�vetkez�" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Vissza" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "M�gsem" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Felhaszn�l�i adatok be�ll�t�sa" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Shadow jelsz�k haszn�lata" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "MD5 jelsz�k haszn�lata" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "LDAP azonos�t�s haszn�lata" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Kerberos 5 haszn�lata" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "LDAP azonos�t�s haszn�lata" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Azonos�t�s be�ll�t�s" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 #, fuzzy msgid "disable MD5 passwords by default\n" msgstr "MD5 jelsz�k haszn�lata" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 #, fuzzy msgid "disable NIS" msgstr "NIS haszn�lata" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 #, fuzzy msgid "enable LDAP for authentication by default" msgstr "LDAP azonos�t�s haszn�lata" -#: ../authconfig.c:878 +#: ../authconfig.c:879 #, fuzzy msgid "disable LDAP for authentication by default" msgstr "LDAP azonos�t�s haszn�lata" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "LDAP azonos�t�s haszn�lata" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "LDAP azonos�t�s haszn�lata" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "LDAP azonos�t�s haszn�lata" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "LDAP azonos�t�s haszn�lata" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: hib�s argumentum %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: v�ratlan argumentum\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: csak root-k�nt futtathat�\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kritikus hiba %s/%s olvas�sakor" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Felhaszn�l�i adatok be�ll�t�sa" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -353,22 +353,22 @@ msgstr "" " / elemek k�z�tt | kiv�laszt | " "k�vetkez�" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "p�rbesz�d le�ll�tva\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kritikus hiba %s/%s olvas�sakor" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kritikus hiba %s/%s �r�sakor" diff --git a/po/id.po b/po/id.po index 3547ab5..d6126af 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ID-authconfig 1.0\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 1999-09-08 10:24+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: LDP Indonesia \n" @@ -25,7 +25,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -80,282 +80,282 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Kembali" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Batal" -#: ../authconfig.c:486 +#: ../authconfig.c:487 #, fuzzy msgid "User Information Configuration" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Gunakan password Shadow" -#: ../authconfig.c:552 +#: ../authconfig.c:553 #, fuzzy msgid "Use MD5 Passwords" msgstr "Gunakan password MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 #, fuzzy msgid "Use LDAP Authentication" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 #, fuzzy msgid "disable MD5 passwords by default\n" msgstr "Gunakan password MD5" -#: ../authconfig.c:859 +#: ../authconfig.c:860 #, fuzzy msgid "enable NIS" msgstr "Jalankan NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 #, fuzzy msgid "disable NIS" msgstr "Jalankan NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 #, fuzzy msgid "enable LDAP for authentication by default" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:878 +#: ../authconfig.c:879 #, fuzzy msgid "disable LDAP for authentication by default" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: argumen salah %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: argumen harusnya tidak ada\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: Anda harus jadi root dulu\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, fuzzy, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: gagal membaca /etc/pam.d/passwd\n" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Konfigurasi Autentikasi" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -363,22 +363,22 @@ msgstr "" " / untuk switch | untuk memilih | layar " "berikutnya" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: gagal membaca /etc/pam.d/passwd\n" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, fuzzy, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: gagal menulis /etc/yp.conf\n" diff --git a/po/is.po b/po/is.po index 7eb9a5d..ea5d21b 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 1.25\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-01-23 01:05+000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "A�v�run" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "� lagi" @@ -72,291 +72,292 @@ msgid "Cache Information" msgstr "Uppl�singar um bi�minni" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Nota NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Nota LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Nota TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Nota Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "�fram" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Til baka" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "H�tta vi�" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Stillingar notendauppl�singa" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Nota falin lykilor�" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Nota MD5 lykilor�" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Nota LDAP au�kenningu" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Nota Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "Nota SMB au�kenningu" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Stillingar au�kenningar" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "nota sj�lfgefi� falin lykilor�" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "ekki nota falin lykilor� sj�lfgefi�" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "Nota sj�lfgefi� MD5 lykilor�" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "Ekki nota MD5 lykilor� sj�lfgefi�\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "nota NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "Ekki nota NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "sj�lfgefi� NIS l�n" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "sj�lfgefinn NIS �j�nn\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "<�j�nn>" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "nota sj�lfgefi� LDAP fyrir notandauppl�singar" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "ekki nota LDAP fyrir notandauppl�singar sj�lfgefi�" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "nota TLS �samt LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "ekki nota TLS �samt LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "Nota sj�lfgefi� LDAP au�kenningu" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "Ekki nota LDAP au�kenningu sj�lfgefi�" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "sj�lfgefinn LDAP �j�nn" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "sj�lfgefi� LDAP grunn DN\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "nota sj�lfgefi� kerberos au�kenningu" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "ekki nota kerberos au�kenningu sj�lfgefi�" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "sj�lfgefi� kerberos KDC" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "sj�lfgefinn kerberos stj�rn�j�nn" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "sj�lfgefi� kerberos sv��i\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "nota sj�lfgefi� SMB au�kenningu" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "Ekki nota SMB au�kenningu sj�lfgefi�" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "vinnuh�purinn sem au�kenninga�j�narnir eru �" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "heiti �j�nanna sem eru nota�ir til au�kenninga\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "nota sj�lfgefi� hesiod fyrir notandauppl�singar" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "ekki nota hesiod fyrir notandauppl�singar sj�lfgefi�" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "sj�lfgefi� hesiod LHS" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "sj�lfgefi� hesiod RHS\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "nota sj�lfgefi� bi�mini fyrir notandauppl�singar" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "ekki nota bi�minni fyrir notandauppl�singar sj�lfgefi�\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "ekki r�sa e�a st��va portmap, ypbind og nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "ekki birta notendaskil" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "leita � netinu a� sj�lfgefnum gildum" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "nota ��nar reglur" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "ekki nota ��nar reglur" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: �leyfilegt vi�fang %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: reyni a� halda �fram\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: �v�nt vi�fang\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: m� eing�ngu keyra sem r�t\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: alvarleg villa vi� lestur %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: get ekki lesi� stillingar bi�minnis" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" " / milli atri�a | velur | n�sti skj�r " -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat HF." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "h�tt var vi� val\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: alvarleg villa vi� lestur bi�minnisstillinga" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: alvarleg villa vi� skrift � %s/%s" diff --git a/po/it.po b/po/it.po index 7aa7e42..6135268 100644 --- a/po/it.po +++ b/po/it.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2000-07-18 18:00+1\n" "Last-Translator: Bettina De Monti \n" "Language-Team: ITALIAN \n" @@ -26,7 +26,7 @@ msgstr "" msgid "Warning" msgstr "Avviso" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -76,269 +76,270 @@ msgid "Cache Information" msgstr "Informazioni sulla cache" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Usa NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Usa LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Usa TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Usa Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Avanti" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Indietro" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Cancella" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Configurazione informazioni utente" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Usa Shadow Password" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Abilita Password MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Usa autenticazione LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Usa Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "Usa l'autenticazione SMB" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Configurazione dell'autenticazione" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "abilita password shadow di default" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "disabilita password shadow di default" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "abilita password MD5 di default" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "disabilita password MD5 di default\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "NIS abilitato" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "disabilita NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "dominio NIS di default" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "Server NIS di default\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "abilita di default LDAP per informazioni utente" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "diabilita di default LDAP per informazioni utente" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "abilita l'uso di TLS con LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "disabilita l'uso di TLS con LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "abilita di default autenticazione LDAP" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "disabilita di default autenticazione LDAP" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "Server LDAP" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "base DN LDAP di default\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "abilita di default autenticazione kerberos" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "disabilita di default autenticazione kerberos" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "KDC kerberos di default" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "server admin kerberos di default" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "Kerberos Realm di default\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "abilita di default autenticazione SMB" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "disabilita di default autenticazione SMB" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "i server per l'autenticazione del gruppo di lavoro sono presenti" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "nomi dei server per l'autenticazione\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "abilita di default hesiod per informazione utenti" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "disabilita di default hesiod per informazione utenti" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "LHS hesiod di default" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "RHS hesiod di default\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "abilita di default il caching delle informazione utente" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "disabilita di default il caching delle informazione utente\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "non avviare/fermare portmap, ypbind e nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "non mostrare interfaccia utente" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "ricerca i parametri di default sulla rete" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "utilizza policy definite localmente" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "non utilizzare policy definite localmente" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: argomento sbagliato %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: tentativo di continuare\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: argomento inaspettato\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: pu� essere eseguito solo come root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: errore critico durante la lettura di %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: impossibile leggere la configurazione di cache" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -346,22 +347,22 @@ msgstr "" " / tra gli elementi | seleziona | schermo " "successivo " -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "dialogo � stato cancellato\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: errore critico durante la registrazione dei parametri di cache" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: errore critico durante la scrittura di %s/%s" diff --git a/po/ja.po b/po/ja.po index 0342e33..6175d2e 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.0.24\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-01-24 13:02-0500\n" "Last-Translator: Adrian Havill \n" "Language-Team: Japanese\n" @@ -28,7 +28,7 @@ msgid "Warning" msgstr "�ٹ�" # ../authconfig.c:154 ../authconfig.c:550 ../authconfig.c:563 -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "OK" @@ -88,308 +88,309 @@ msgstr "����å������" # ../authconfig.c:275 ../authconfig.c:310 ../authconfig.c:467 #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "NIS �����" # ../authconfig.c:305 -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "LDAP �����" # ../authconfig.c:275 ../authconfig.c:310 ../authconfig.c:467 -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "TLS�����" # ../authconfig.c:344 #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Hesiod �����" # ../authconfig.c:374 -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "��" # ../authconfig.c:375 ../authconfig.c:551 ../authconfig.c:564 -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "���" # ../authconfig.c:375 ../authconfig.c:552 -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "���ä�" # ../authconfig.c:394 -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "�桼�����������" # ../authconfig.c:450 -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "����ɥ��ѥ���ɤ����" # ../authconfig.c:455 -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "MD5 �ѥ���ɤ����" # ../authconfig.c:462 -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "LDAP ǧ�ڤ����" # ../authconfig.c:500 -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Kerberos 5 �����" # ../authconfig.c:462 -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "SMBǧ�ڤ����" # ../authconfig.c:580 -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "ǧ�ڤ�����" # ../authconfig.c:708 -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "����ɥ��ѥ���ɤ�ǥե���Ȥ�ͭ���ˤ���" # ../authconfig.c:710 -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "����ɥ��ѥ���ɤ�ǥե���ȤǤ�ͭ���ˤ��ʤ�" # ../authconfig.c:714 -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "MD5 �ѥ���ɤ�ǥե���Ȥ�ͭ���ˤ���" # ../authconfig.c:716 -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "MD5 �ѥ���ɤ�ǥե���ȤǤ�ͭ���ˤ��ʤ�\n" # ../authconfig.c:719 -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "NIS ��ͭ���ˤ���" # ../authconfig.c:721 -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "NIS ��ͭ���ˤ��ʤ�" # ../authconfig.c:723 -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "�ǥե���Ȥ� NIS �ɥᥤ��" # ../authconfig.c:723 -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "<�ɥᥤ��>" # ../authconfig.c:725 -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "�ǥե���Ȥ� NIS ������\n" # ../authconfig.c:725 ../authconfig.c:740 ../authconfig.c:749 # ../authconfig.c:751 -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "<������>" # ../authconfig.c:728 -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "�桼������˴ؤ��� LDAP ��ǥե���Ȥ�ͭ���ˤ���" # ../authconfig.c:730 -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "�桼������˴ؤ��� LDAP ��ǥե���ȤǤ�ͭ���ˤ��ʤ�" # ../authconfig.c:732 -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "TLS �� LDAP ��ʻ�Ѥ�ͭ���ˤ���" # ../authconfig.c:734 -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "TLS �� LDAP ��ʻ�Ѥ�ͭ���ˤ��ʤ�" # ../authconfig.c:736 -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "LDAP ǧ�ڤ�ǥե���Ȥ�ͭ���ˤ���" # ../authconfig.c:738 -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "LDAP ǧ�ڤ�ǥե���ȤǤ�ͭ���ˤ��ʤ�" # ../authconfig.c:740 -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "�ǥե���Ȥ� LDAP ������" # ../authconfig.c:742 -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "�ǥե���Ȥ� LDAP �١��� DN\n" # ../authconfig.c:742 -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" # ../authconfig.c:745 -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "Kerberos ǧ�ڤ�ǥե���Ȥ�ͭ���ˤ���" # ../authconfig.c:747 -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "Kerberos ǧ�ڤ�ǥե���ȤǤ�ͭ���ˤ��ʤ�" # ../authconfig.c:749 -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "�ǥե���Ȥ� Kerberos KDC" # ../authconfig.c:751 -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "�ǥե���Ȥ� Kerberos admin ������" # ../authconfig.c:753 -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "�ǥե���Ȥ� Kerberos ����(realm)\n" # ../authconfig.c:753 -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "<����>" # ../authconfig.c:745 -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "SMBǧ�ڤ�ǥե���Ȥ�ͭ���ˤ���" # ../authconfig.c:738 -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "SMBǧ�ڤ�ǥե���ȤǤ�̵���ˤ���" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "������롼��ǧ�ڥ�����" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "<������롼��>" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "ǧ�ڤ��륵����\n" # ../authconfig.c:756 -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "�桼������˴ؤ��� hesiod ��ǥե���Ȥ�ͭ���ˤ���" # ../authconfig.c:758 -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "�桼������˴ؤ��� hesiod ��ǥե���ȤǤ�ͭ���ˤ��ʤ�" # ../authconfig.c:760 -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "�ǥե���Ȥ� hesiod LHS" # ../authconfig.c:760 -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" # ../authconfig.c:762 -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "�ǥե���Ȥ� hesiod RHS\n" # ../authconfig.c:762 -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" # ../authconfig.c:756 -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "�桼������Υ���å����ǥե���Ȥ�ͭ���ˤ���" # ../authconfig.c:758 -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "�桼������Υ���å����ǥե���ȤǤ�̵���ˤ���\n" # ../authconfig.c:769 -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "portmap��ypbind��nscd ��ư/��ߤ��ʤ�" # ../authconfig.c:771 -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "�桼�����󥿥ե�������ɽ�����ʤ�" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "ɸ��Υͥåȥ���򸡽�" # ../authconfig.c:774 -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "��������������줿�ݥꥷ�������" # ../authconfig.c:776 -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "��������������줿�ݥꥷ������Ѥ��ʤ�" # ../authconfig.c:787 -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: ��Ŭ�ڤʰ��� %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: ��������\n" # ../authconfig.c:794 -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: ͽ�����ʤ�����\n" # ../authconfig.c:803 -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: root �Ȥ��ƤΤ߼¹ԤǤ��ޤ�\n" @@ -397,39 +398,39 @@ msgstr "%s: root �Ȥ��ƤΤ߼¹ԤǤ��ޤ�\n" # ../authconfig.c:814 ../authconfig.c:822 ../authconfig.c:830 # ../authconfig.c:838 ../authconfig.c:846 ../authconfig.c:854 # ../authconfig.c:862 -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: %s/pam.d/%s ���ɤ߹�����˽���ʥ��顼��ȯ�����ޤ���" # ../authconfig.c:394 -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: ����å���������ɤ߼��ޤ���" # ../authconfig.c:912 -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "/ ���ܴ֤ΰ�ư| ���� | ���β���" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." # ../authconfig.c:922 -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "�����������ϥ���󥻥뤵��ޤ���\n" # ../authconfig.c:814 ../authconfig.c:822 ../authconfig.c:830 # ../authconfig.c:838 ../authconfig.c:846 ../authconfig.c:854 # ../authconfig.c:862 -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: ����å���������ɤ߹�����˽���ʥ��顼��ȯ�����ޤ���" @@ -437,9 +438,9 @@ msgstr "%s: ����å���������ɤ߹�����˽���ʥ��顼��ȯ�����ޤ���" # ../authconfig.c:982 ../authconfig.c:988 ../authconfig.c:994 # ../authconfig.c:1000 ../authconfig.c:1006 ../authconfig.c:1011 # ../authconfig.c:1017 -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: %s/%s �ν񤭹�����˽���ʥ��顼��ȯ�����ޤ���" diff --git a/po/ko.po b/po/ko.po index 387038c..ecf56ec 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.6\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-08-09 10:53+1000\n" "Last-Translator: Jin-Hee Shin \n" "Language-Team: Korean Linux Extension project \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "���" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ȯ��" @@ -72,291 +72,292 @@ msgid "Cache Information" msgstr "ij��(Cache) ����" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "NIS ���" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "LDAP ���" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "TLS ���" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Hesiod ���" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "����" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "�ڷ�" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "���" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "����� ���� ����" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "������ �н����� ���" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "MD5 �н����� ���" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "LDAP ���� ���" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Kerberos 5 ���" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "SMB ���� ���" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "���� ����" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "������ �н����带 �⺻������ �����" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "������ �н����带 �⺻������ ������� ����" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "MD5 �н����带 �⺻������ �����" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "MD5 �н����带 �⺻������ ������� ����\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "NIS�� �����" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "NIS�� ������� ����" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "�⺻ NIS ������" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "<������>" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "�⺻ NIS ����\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "<����>" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "����� ������ ���� LDAP�� �⺻������ �����" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "����� ������ ���� LDAP�� �⺻������ ������� ����" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "LDAP�� TLS�� �����" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "LDAP�� TLS�� ������� ����" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "������ ���� LDAP�� �⺻������ �����" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "������ ���� LDAP�� �⺻������ ������� ����" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "�⺻ LDAP ����" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "�⺻ DN ��� LDAP\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "kerberos ������ �⺻������ �����" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "kerberos ������ �⺻������ ������� ����" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "�⺻ kerberos KDC" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "�⺻ kerberos ���� ����" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "�⺻ kerberos realm\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "������ ���� SMB�� �⺻������ �����" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "������ ���� SMB�� �⺻������ ������� ����" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "�۾��׷� ���� ������" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "<�۾��׷�>" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "������ ������ �̸�\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "����� ������ ���� hesiod�� �⺻������ �����" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "����� ������ ���� hesiod�� �⺻������ ������� ����" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "�⺻ hesiod LHS" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "�⺻ hesiod RHS\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "����� ������ �����ϴ� ���� �⺻������ �����" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "����� ������ �����ϴ� ���� �⺻������ ������� ����\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "portmap, ypbind, nscd ������ 'start/stop' ���� ����" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "����� �������̽��� ǥ������ ����" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "��Ʈ��ũ���� �⺻���� �˻�" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "������-���� ��å�� �����" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "������-���� ��å�� ������� ����" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: �߸��� �μ��� %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: ����Ϸ� �õ���\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: ������� �μ�\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: root ���� ������ �� �ֽ��ϴ�\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: %s/%s �� �д� ���� �ɰ��� ������ �߻��Ǿ����ϴ�" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: ����� ���� ���� ������ ���� �� ����" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" " / �׸� �̵� | ���� | ���� ȭ��" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "��ȭ�� ������ ��ҵǾ����ϴ�\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: ����� ���� ���� ����� �д� ���� �ɰ��� ������ �߻��Ǿ����ϴ�" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: %s/%s �� �ۼ��ϴ� ���� �ɰ��� ������ �߻��Ǿ����ϴ�" diff --git a/po/nb.po b/po/nb.po index 31b869c..3d577f5 100644 --- a/po/nb.po +++ b/po/nb.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.0.16\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-07-31 21:27+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "Advarsel" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -72,269 +72,270 @@ msgid "Cache Information" msgstr "Informasjon om buffer" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Bruk NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Bruk LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Bruk TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Bruk Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Neste" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Tilbake" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Avbryt" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Konfigurasjon av brukerinformasjon" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Bruk skyggepassord" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Bruk MD5-passord" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Bruk LDAP-autentisering" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Bruk Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "Bruk SMB-autentisering" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Autentiseringskonfigurasjon" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "bruk skyggepassord som standard" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "ikke bruk skyggepassord som standard" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "bruk MD5-passord som standard" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "sl� av bruk av MD5-passord som standard\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "bruk NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "ikke bruk NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "standard NIS-domene" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "standard NIS-tjener\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "bruk LDAP som standard for brukerinformasjon" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "ikke bruk LDAP som standard for brukerinformasjon" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "bruk TLS med LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "ikke bruk TLS med LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "bruk LDAP som standard for autentisering" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "ikke bruk LDAP som standard for autentisering" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "standard LDAP-tjener" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "standard LDAP basis DN\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "bruk kerberos autentisering som standard" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "ikke bruk kerberos autentisering som standard" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "standard kerberos KDC" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "standard kerberos admin-tjener" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "standard kerberos omr�de\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "bruk SMB-autentisering som standard" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "ikke bruk SMB-autentisering som standard" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "arbeidsgruppe for autentiseringstjenere" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "navn p� tjenere som det skal gj�res autentisering mot\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "bruk hesiod som standard for brukerinformasjon" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "ikke bruk hesiod som standard for brukerinformasjon" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "standard LHS for hesiod" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "standard RHS for hesiod\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "bruk mellomlagring av brukerinformasjon som standard" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "ikke bruk mellomlagring av brukerinformasjon som standard\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "ikke start/stopp portmap, ypbind og nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "ikke vis brukergrensesnitt" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "s�k nettverk etter standardverdier" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "bruk lokalt definerte regler" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "ikke bruk lokalt definerte regler" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: ugyldig argument %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: fors�ker � fortsette\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: uventet argument\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: kan bare kj�res av root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kritisk feil under lesing av %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: kunne ikke lese konfigurasjon for mellomlagring" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -342,22 +343,22 @@ msgstr "" " / mellom elementer | velger | neste " "skjerm" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "� 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "dialogen ble avbrutt\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kritisk feil under setting av innstillingene for mellomlagring" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kritisk feil under skriving til %s/%s" diff --git a/po/nn.po b/po/nn.po index db7a26b..b6508fd 100644 --- a/po/nn.po +++ b/po/nn.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-06-25 18:55+02:00\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian (Nynorsk)\n" @@ -24,7 +24,7 @@ msgstr "" msgid "Warning" msgstr "�tvaring" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "OK" @@ -81,326 +81,326 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 #, fuzzy msgid "Use NIS" msgstr "Bruk SSL" -#: ../authconfig.c:396 +#: ../authconfig.c:397 #, fuzzy msgid "Use LDAP" msgstr "Brukar-ID" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 #, fuzzy msgid "Use TLS" msgstr "Bruk SSL" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 #, fuzzy msgid "Use Hesiod" msgstr "Brukar-id" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Neste" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Tilbake" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Avbryt" -#: ../authconfig.c:486 +#: ../authconfig.c:487 #, fuzzy msgid "User Information Configuration" msgstr "Brukarinformasjon" -#: ../authconfig.c:547 +#: ../authconfig.c:548 #, fuzzy msgid "Use Shadow Passwords" msgstr "Passord" -#: ../authconfig.c:552 +#: ../authconfig.c:553 #, fuzzy msgid "Use MD5 Passwords" msgstr "Passord" -#: ../authconfig.c:559 +#: ../authconfig.c:560 #, fuzzy msgid "Use LDAP Authentication" msgstr "PAP-autentisering" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Autentisering:" -#: ../authconfig.c:705 +#: ../authconfig.c:706 #, fuzzy msgid "Authentication Configuration" msgstr "Lyd-oppsett" -#: ../authconfig.c:848 +#: ../authconfig.c:849 #, fuzzy msgid "enable shadowed passwords by default" msgstr "Kan ikkje byggja passorddatabase" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "" -#: ../authconfig.c:859 +#: ../authconfig.c:860 #, fuzzy msgid "enable NIS" msgstr "p�" -#: ../authconfig.c:861 +#: ../authconfig.c:862 #, fuzzy msgid "disable NIS" msgstr "skru av XIM." -#: ../authconfig.c:863 +#: ../authconfig.c:864 #, fuzzy msgid "default NIS domain" msgstr "Fjern ramme" -#: ../authconfig.c:863 +#: ../authconfig.c:864 #, fuzzy msgid "" msgstr "Domene" -#: ../authconfig.c:865 +#: ../authconfig.c:866 #, fuzzy msgid "default NIS server\n" msgstr "standardtenar" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 #, fuzzy msgid "" msgstr "Tenarmaske" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 #, fuzzy msgid "enable LDAP for authentication by default" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:878 +#: ../authconfig.c:879 #, fuzzy msgid "disable LDAP for authentication by default" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:880 +#: ../authconfig.c:881 #, fuzzy msgid "default LDAP server" msgstr "standardtenar" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 #, fuzzy msgid "" msgstr "&Ned" -#: ../authconfig.c:885 +#: ../authconfig.c:886 #, fuzzy msgid "enable kerberos authentication by default" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:887 +#: ../authconfig.c:888 #, fuzzy msgid "disable kerberos authentication by default" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:889 +#: ../authconfig.c:890 #, fuzzy msgid "default kerberos KDC" msgstr "standardtenar" -#: ../authconfig.c:891 +#: ../authconfig.c:892 #, fuzzy msgid "default kerberos admin server" msgstr "standardtenar" -#: ../authconfig.c:893 +#: ../authconfig.c:894 #, fuzzy msgid "default kerberos realm\n" msgstr "standardtenar" -#: ../authconfig.c:893 +#: ../authconfig.c:894 #, fuzzy msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:900 +#: ../authconfig.c:901 #, fuzzy msgid "workgroup authentication servers are in" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:900 +#: ../authconfig.c:901 #, fuzzy msgid "" msgstr "Arbeidsgruppe" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 #, fuzzy msgid "default hesiod LHS" msgstr "X-standardkodar" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "Inga autentisering i det heile" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 #, fuzzy msgid "don't display user interface" msgstr "KDE brukarmilj�" -#: ../authconfig.c:927 +#: ../authconfig.c:928 #, fuzzy -msgid "probe network for defaults" +msgid "probe network for defaults and print them" msgstr "Gjenopprett standardinnstillingar" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, fuzzy, c-format msgid "%s: bad argument %s: %s\n" msgstr ": Programargument" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, fuzzy, c-format msgid "%s: unexpected argument\n" msgstr "Uventa argument '%1'." -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Brukarinformasjon" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "" diff --git a/po/no.po b/po/no.po index 31b869c..3d577f5 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.0.16\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-07-31 21:27+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "Advarsel" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -72,269 +72,270 @@ msgid "Cache Information" msgstr "Informasjon om buffer" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Bruk NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Bruk LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Bruk TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Bruk Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Neste" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Tilbake" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Avbryt" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Konfigurasjon av brukerinformasjon" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Bruk skyggepassord" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Bruk MD5-passord" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Bruk LDAP-autentisering" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Bruk Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "Bruk SMB-autentisering" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Autentiseringskonfigurasjon" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "bruk skyggepassord som standard" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "ikke bruk skyggepassord som standard" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "bruk MD5-passord som standard" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "sl� av bruk av MD5-passord som standard\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "bruk NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "ikke bruk NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "standard NIS-domene" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "standard NIS-tjener\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "bruk LDAP som standard for brukerinformasjon" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "ikke bruk LDAP som standard for brukerinformasjon" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "bruk TLS med LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "ikke bruk TLS med LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "bruk LDAP som standard for autentisering" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "ikke bruk LDAP som standard for autentisering" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "standard LDAP-tjener" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "standard LDAP basis DN\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "bruk kerberos autentisering som standard" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "ikke bruk kerberos autentisering som standard" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "standard kerberos KDC" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "standard kerberos admin-tjener" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "standard kerberos omr�de\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "bruk SMB-autentisering som standard" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "ikke bruk SMB-autentisering som standard" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "arbeidsgruppe for autentiseringstjenere" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "navn p� tjenere som det skal gj�res autentisering mot\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "bruk hesiod som standard for brukerinformasjon" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "ikke bruk hesiod som standard for brukerinformasjon" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "standard LHS for hesiod" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "standard RHS for hesiod\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "bruk mellomlagring av brukerinformasjon som standard" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "ikke bruk mellomlagring av brukerinformasjon som standard\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "ikke start/stopp portmap, ypbind og nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "ikke vis brukergrensesnitt" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "s�k nettverk etter standardverdier" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "bruk lokalt definerte regler" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "ikke bruk lokalt definerte regler" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: ugyldig argument %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: fors�ker � fortsette\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: uventet argument\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: kan bare kj�res av root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kritisk feil under lesing av %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: kunne ikke lese konfigurasjon for mellomlagring" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -342,22 +343,22 @@ msgstr "" " / mellom elementer | velger | neste " "skjerm" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "� 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "dialogen ble avbrutt\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kritisk feil under setting av innstillingene for mellomlagring" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kritisk feil under skriving til %s/%s" diff --git a/po/pl.po b/po/pl.po index 566e3dc..2c499ed 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.4\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-02-09 17:25-0500\n" "Last-Translator: Nalin Dahyabhai \n" "Language-Team: English \n" @@ -20,7 +20,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "" @@ -70,290 +70,290 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "" diff --git a/po/pt.po b/po/pt.po index ead2208..1f52b2c 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.4\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-08-14 23:28-0500\n" "Last-Translator: Thiago Vinhas de Moraes \n" "Language-Team: Brazilian Portuguese \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "Aviso" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "" @@ -73,274 +73,274 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Usar NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Usar LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Usar TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Usar Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Avan�ar" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Retornar" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Cancelar" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Configura��o de Informa��es do Usu�rio" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Usar Senhas \"Shadow\"" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Usar Senhas MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Usar Autentica��o LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Usar Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Usar Autentica��o LDAP" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Configura��o da Autentica��o" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "habilitar senhas shadow por padr�o" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "desabilitar senhas shadow por padr�o" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "habilitar senhas MD5 por padr�o" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "desabilitar senhas MD5 por padr�o\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "habilitar NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "desabilitar NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "dom�nio NIS padr�o" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "servidor NIS padr�o\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "habilitar LDAP para informa��o de usu�rio por padr�o" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "desabilitar LDAP para informa��o de usu�rio por padr�o" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "habilitar uso do TLS com LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "desabilitar uso do TLS com LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "habilitar LDAP para autentica��o por padr�o" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "desabilitar LDAP para autentica��o por padr�o" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "servidor LDAP padr�o" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "LDAP base DN padr�o\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "habilitar autentica��o por kerberos por padr�o" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "desabilitar autentica��o por kerberos por padr�o" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "kerberos KDC padr�o" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "servidor admin kerberos padr�o" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "kerberos realm padr�o\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "habilitar autentica��o por kerberos por padr�o" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "desabilitar LDAP para autentica��o por padr�o" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "habilitar hesiod para informa��o de usu�rio por padr�o" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "desabilitar hesiod para informa��o de usu�rio por padr�o" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "hesiod LHS padr�o" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "hesiod RHS padr�o\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "habilitar hesiod para informa��o de usu�rio por padr�o" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "desabilitar hesiod para informa��o de usu�rio por padr�o" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "n�o inicia/para portmap, ypbind e nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "n�o mostra interface de usu�rio" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "usar pol�tica definida localmente" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "n�o usar pol�tica definida localmente" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: argumento errado %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: argumento inesperado\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: s� pode ser executado como root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: erro cr�tico lendo %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Configura��o de Informa��es do Usu�rio" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -348,22 +348,22 @@ msgstr "" " / entre elementos | seleciona | pr�xima " "tela" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "o di�logo foi cancelado\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: erro cr�tico lendo %s/%s" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: erro cr�tico escrevendo %s/%s" diff --git a/po/pt_BR.po b/po/pt_BR.po index ead2208..1f52b2c 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.4\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-08-14 23:28-0500\n" "Last-Translator: Thiago Vinhas de Moraes \n" "Language-Team: Brazilian Portuguese \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "Aviso" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "" @@ -73,274 +73,274 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Usar NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Usar LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Usar TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Usar Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Avan�ar" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Retornar" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Cancelar" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Configura��o de Informa��es do Usu�rio" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Usar Senhas \"Shadow\"" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Usar Senhas MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Usar Autentica��o LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Usar Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Usar Autentica��o LDAP" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Configura��o da Autentica��o" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "habilitar senhas shadow por padr�o" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "desabilitar senhas shadow por padr�o" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "habilitar senhas MD5 por padr�o" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "desabilitar senhas MD5 por padr�o\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "habilitar NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "desabilitar NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "dom�nio NIS padr�o" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "servidor NIS padr�o\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "habilitar LDAP para informa��o de usu�rio por padr�o" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "desabilitar LDAP para informa��o de usu�rio por padr�o" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "habilitar uso do TLS com LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "desabilitar uso do TLS com LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "habilitar LDAP para autentica��o por padr�o" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "desabilitar LDAP para autentica��o por padr�o" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "servidor LDAP padr�o" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "LDAP base DN padr�o\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "habilitar autentica��o por kerberos por padr�o" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "desabilitar autentica��o por kerberos por padr�o" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "kerberos KDC padr�o" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "servidor admin kerberos padr�o" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "kerberos realm padr�o\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "habilitar autentica��o por kerberos por padr�o" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "desabilitar LDAP para autentica��o por padr�o" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "habilitar hesiod para informa��o de usu�rio por padr�o" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "desabilitar hesiod para informa��o de usu�rio por padr�o" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "hesiod LHS padr�o" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "hesiod RHS padr�o\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "habilitar hesiod para informa��o de usu�rio por padr�o" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "desabilitar hesiod para informa��o de usu�rio por padr�o" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "n�o inicia/para portmap, ypbind e nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "n�o mostra interface de usu�rio" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "usar pol�tica definida localmente" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "n�o usar pol�tica definida localmente" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: argumento errado %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: argumento inesperado\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: s� pode ser executado como root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: erro cr�tico lendo %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Configura��o de Informa��es do Usu�rio" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -348,22 +348,22 @@ msgstr "" " / entre elementos | seleciona | pr�xima " "tela" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "o di�logo foi cancelado\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: erro cr�tico lendo %s/%s" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: erro cr�tico escrevendo %s/%s" diff --git a/po/ro.po b/po/ro.po index 91105e1..8369a29 100644 --- a/po/ro.po +++ b/po/ro.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 1.0\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 1999-04-13 11:56-04:00\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -26,7 +26,7 @@ msgstr "" msgid "Warning" msgstr "Aten�ie" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -77,279 +77,279 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Activare NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Activare LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 #, fuzzy msgid "Use TLS" msgstr "Activare NIS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Activare Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Urm�torul" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "�napoi" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Abandon" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Configurare Informa�ii Utilizator" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Activeaz� Shadow Passwords" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Activeaz� Parole MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Activare Autentificare LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Activare Autentificare Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Activare Autentificare LDAP" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Configurare Metode de Autentificare" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 #, fuzzy msgid "disable MD5 passwords by default\n" msgstr "Activeaz� Parole MD5" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 #, fuzzy msgid "disable NIS" msgstr "Activare NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 #, fuzzy msgid "enable LDAP for authentication by default" msgstr "Activare Autentificare LDAP" -#: ../authconfig.c:878 +#: ../authconfig.c:879 #, fuzzy msgid "disable LDAP for authentication by default" msgstr "Activare Autentificare LDAP" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "Activare Autentificare LDAP" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "Activare Autentificare LDAP" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "Activare Autentificare LDAP" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "Activare Autentificare LDAP" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: argument invalid %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: argument incorect\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: poate fi rulat numai de c�tre root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: eroare fatal� la citirea %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Configurare Informa�ii Utilizator" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -357,22 +357,22 @@ msgstr "" " / �ntre elemente | selecteaz� | " "urm�torul ecran" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "interac�iunea a fost oprit�\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: eroare fatal� la citirea %s/%s" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: eroare critic� la scrierea %s/%s" diff --git a/po/ru.po b/po/ru.po index e2a90f8..4f21d3c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.0\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-01-22 11:00-0500\n" "Last-Translator: Eugene Kanter \n" "Language-Team: Black Cat Linux Team \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "��������" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -73,296 +73,296 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "������������ NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "������������ LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "������������ TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "������������ Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "�����" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "�����" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "������" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "��������� ���������� � ������������" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "������������ ������� ������" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "������������ ������ MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "���. ����������� ����� LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "������������ Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "���. ����������� ����� LDAP" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "������������ �����������" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "�������� ������� ������" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "��������� ������� ������" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "�������� ������ MD5" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "��������� ������ MD5\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "�������� NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "��������� NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "����� NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "<�����>" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "������ NIS\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "<������>" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "������� LDAP ��� ��������� ���������� � �������������." -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "�� ������������ LDAP ��� ��������� ���������� � �������������" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "�������� ������������� TLS � LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "�� ������������ TLS � LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "������������ ����������� LDAP" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "�� ������������ ����������� LDAP" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "LDAP ������" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "������� DN ������� LDAP\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "������������ ����������� kerberos" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "�� ������������ ����������� kerberos" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "kerberos KDC" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "������ ���������� kerberos" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "������� kerberos\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "<�������>" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "������������ ����������� kerberos" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "�� ������������ ����������� LDAP" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "������������ hesiod ��� ���������� � �������������" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "�� ������������ hesiod ��� ���������� � �������������" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "hesiod LHS" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "hesiod RHS\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "������������ hesiod ��� ���������� � �������������" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "�� ������������ hesiod ��� ���������� � �������������" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "�� �������������/��������� portmap, ypbind � nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "�� ���������� ��������� ������������" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "������������ ������� �������" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "�� ������������ ������� �������" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: �������� �������� %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: ����������� ��������\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: ����� ����������� ������ ������������� root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: ����������� ������ ������ %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "��������� ���������� � ������������" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" " / ����� ���������� | ����� | ��������� �����" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "������ ��� �������\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: ����������� ������ ������ %s/%s" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: ����������� ������ ������ %s/%s" diff --git a/po/sk.po b/po/sk.po index 0ca44d5..10a3fe4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2000-02-22 19:20+0100\n" "Last-Translator: Juraj Bedn�r \n" "Language-Team: Slovak \n" @@ -20,7 +20,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -76,308 +76,308 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 #, fuzzy msgid "Use NIS" msgstr "NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 #, fuzzy msgid "Use LDAP" msgstr "LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 #, fuzzy msgid "Use TLS" msgstr "NIS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Sp�" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Zru�i�" -#: ../authconfig.c:486 +#: ../authconfig.c:487 #, fuzzy msgid "User Information Configuration" msgstr "Konfigur�cia overovania" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Pou��va� shadow hesl�" -#: ../authconfig.c:552 +#: ../authconfig.c:553 #, fuzzy msgid "Use MD5 Passwords" msgstr "Povoli� MD5 hesl�" -#: ../authconfig.c:559 +#: ../authconfig.c:560 #, fuzzy msgid "Use LDAP Authentication" msgstr "Typ overovania:" -#: ../authconfig.c:597 +#: ../authconfig.c:598 #, fuzzy msgid "Use Kerberos 5" msgstr "Kerberos" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Typ overovania:" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Konfigur�cia overovania" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 #, fuzzy msgid "disable MD5 passwords by default\n" msgstr "Povoli� MD5 hesl�" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 #, fuzzy msgid "disable NIS" msgstr "NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 #, fuzzy msgid "enable LDAP for authentication by default" msgstr "Typ overovania:" -#: ../authconfig.c:878 +#: ../authconfig.c:879 #, fuzzy msgid "disable LDAP for authentication by default" msgstr "Typ overovania:" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 #, fuzzy msgid "default kerberos realm\n" msgstr "Kerberos Realm:" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "Typ overovania:" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "Typ overovania:" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "Typ overovania:" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "Typ overovania:" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: nepr�pustn� parameter %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: neo�ak�van� parameter\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: m��e sp���a� len root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, fuzzy, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kritick� chyba pri ��tan� /etc/pam.d/passwd\n" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Konfigur�cia overovania" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" " / medzi polo�kami | vyber� | nasl. obr. " -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "dial�g bol zru�en�\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kritick� chyba pri ��tan� /etc/pam.d/passwd\n" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, fuzzy, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kritick� chyba pri z�pise s�borov v /etc/pam.d\n" diff --git a/po/sl.po b/po/sl.po index 5b1ed08..12ce36c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 7.1\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-08-18 17:50+0200\n" "Last-Translator: Roman Maurer \n" "Language-Team: Slovenian \n" @@ -29,7 +29,7 @@ msgstr "" msgid "Warning" msgstr "Opozorilo" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "V redu" @@ -80,296 +80,296 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Uporabi NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Uporabi LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Uporabi TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Uporabi Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "Naprej" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Nazaj" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Prekli�i" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Nastavitev podatkov o uporabnikih" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Uporabimo sen�na gesla" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Uporabi gesla MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Nastavitev avtentifikacije LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Uporabi Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Nastavitev avtentifikacije LDAP" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Nastavitev identifikacije" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "privzeto omogo�i sen�na gesla" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "privzeto onemogo�i sen�na gesla" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "privzeto omogo�i gesla MD5" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "privzeto onemogo�i gesla MD5\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "omogo�i NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "onemogo�i NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "privzeta domena za NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "privzeti stre�nik NIS\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "privzeto omogo�i uporabni�ke podatke prek LDAP" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "privzeto onemogo�i uporabni�ke podatke prek LDAP" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "omogo�i rabo TLS z LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "onemogo�i rabo TLS z LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "privzeto omogo�i LDAP za avtentifikacijo" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "privzeto onemogo�i LDAP za avtentifikacijo" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "privzeti stre�nik LDAP" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "privzeta osnova DN za LDAP\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "privzeto omogo�i avtentifikacijo kerberos" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "privzeto onemogo�i avtentifikacijo kerberos" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "privzeto kerberod KDC" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "privzeti skrbni�ki stre�nik kerberos" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "privzeto kerberos realm\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "privzeto omogo�i avtentifikacijo kerberos" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "privzeto onemogo�i LDAP za avtentifikacijo" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "privzeto omogo�i uporabni�ke podatke prek LDAP" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "privzeto onemogo�i uporabni�ke podatke prek LDAP" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "ne za�eni/ugasni programov portmap, ypbind, in nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "ne prika�i uporabni�kega vmesnika" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "uporabi krajevno dolo�ene politike" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "ne uporabi krajevno dolo�enih politik" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: slab argument %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: nepri�akovan argument\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: lahko po�enete le kot root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kriti�na napaka pri branju %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Nastavitev podatkov o uporabnikih" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" "/ med elementi | izbere | naslednji zaslon" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "pogovor je bil preklican\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kriti�na napaka pri branju %s/%s" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kriti�na napaka pri pisanju %s/%s" diff --git a/po/sr.po b/po/sr.po index 8b09efb..5235ab5 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 1.1\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 1999-09-09 10:00-0500\n" "Last-Translator: Zoltan �ala \n" "Language-Team: Serbian \n" @@ -20,7 +20,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "U redu" @@ -76,286 +76,286 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 #, fuzzy msgid "Use NIS" msgstr "NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 #, fuzzy msgid "Use LDAP" msgstr "LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 #, fuzzy msgid "Use TLS" msgstr "NIS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Natrag" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Obustavi" -#: ../authconfig.c:486 +#: ../authconfig.c:487 #, fuzzy msgid "User Information Configuration" msgstr "Pode�avanje autentifikacije" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Koristi 'shadow' lozinke" -#: ../authconfig.c:552 +#: ../authconfig.c:553 #, fuzzy msgid "Use MD5 Passwords" msgstr "Omogu�i MD5 lozinke" -#: ../authconfig.c:559 +#: ../authconfig.c:560 #, fuzzy msgid "Use LDAP Authentication" msgstr "Tip autentifikacije:" -#: ../authconfig.c:597 +#: ../authconfig.c:598 #, fuzzy msgid "Use Kerberos 5" msgstr "Kerberos" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "Tip autentifikacije:" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Pode�avanje autentifikacije" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 #, fuzzy msgid "disable MD5 passwords by default\n" msgstr "Omogu�i MD5 lozinke" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 #, fuzzy msgid "disable NIS" msgstr "NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 #, fuzzy msgid "enable LDAP for authentication by default" msgstr "Tip autentifikacije:" -#: ../authconfig.c:878 +#: ../authconfig.c:879 #, fuzzy msgid "disable LDAP for authentication by default" msgstr "Tip autentifikacije:" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 #, fuzzy msgid "default kerberos realm\n" msgstr "Kraljevstvo Kerberos-a:" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "Tip autentifikacije:" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "Tip autentifikacije:" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "Tip autentifikacije:" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "Tip autentifikacije:" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: lo� argument %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: neo�ekivan argument\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: mo�e da pokrene samo 'root'\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, fuzzy, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kriti�na gre�ka kod �itanja /etc/pam.d/passwd\n" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Pode�avanje autentifikacije" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -363,22 +363,22 @@ msgstr "" " / kretanje izme�u elemenata | izbor | slede�i " "ekran" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "dijalog je obustavljen\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kriti�na gre�ka kod �itanja /etc/pam.d/passwd\n" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, fuzzy, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kriti�na gre�ka kod upisa datoteka u /etc/pam.d\n" diff --git a/po/sv.po b/po/sv.po index 21d9ad1..5cc3353 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-08-06 01:14+0200\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -27,7 +27,7 @@ msgstr "" msgid "Warning" msgstr "Varning" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Ok" @@ -77,269 +77,270 @@ msgid "Cache Information" msgstr "Cacheinformation" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "Anv�nd NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "Anv�nd LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "Anv�nd TLS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Anv�nd Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "N�sta" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Tillbaka" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "Avbryt" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Konfiguration av anv�ndarinformation" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "Anv�nd skuggl�senord" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "Anv�nd MD5-l�senord" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "Anv�nd LDAP-autentisering" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Anv�nd Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "Anv�nd SMB-autentisering" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Autentiseringskonfiguration" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "anv�nd skuggl�senord som standard" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "anv�nd inte skuggl�senord som standard" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "anv�nd MD5-l�senord som standard" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "anv�nd inte MD5-l�senord som standard\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "anv�nd NIS" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "anv�nd inte NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "standard-NIS-dom�n" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "standard-NIS-server\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "anv�nd LDAP f�r anv�ndarinformation som standard" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "anv�nd inte LDAP f�r anv�ndarinformation som standard" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "anv�nd TLS med LDAP" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "anv�nd inte TLS med LDAP" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "anv�nd LDAP f�r autentisering som standard" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "anv�nd inte LDAP f�r autentisering som standard" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "standardserver f�r LDAP" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "standardbasnamn f�r LDAP\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "anv�nd kerberos-autentisering som standard" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "anv�nd inte kerberos-autentisering som standard" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "standard-KDC f�r kerberos" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "standardadministationsserver f�r kerberos" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "standard-realm f�r kerberos\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "anv�nd SMB-autentisering som standard" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "anv�nd inte SMB-autentisering som standard" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "servrar f�r autentisering av arbetsgrupper finns p�" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "namn p� servrar att autentisera mot\n" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "anv�nd hesiod f�r anv�ndarinformation som standard" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "anv�nd inte hesiod f�r anv�ndarinformation som standard" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "standard-LHS f�r hesiod" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "standard-RHS f�r hesiod\n" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "anv�nd cachning av anv�ndarinformation som standard" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "anv�nd inte cachning av anv�ndarinformation som standard\n" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "starta/stoppa inte portmap, ypbind och nscd" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "visa inte anv�ndargr�nssnitt" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +#, fuzzy +msgid "probe network for defaults and print them" msgstr "testa n�tverket f�r standardalternativ" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "anv�nd lokalt definierad policy" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "anv�nd inte lokalt definierad policy" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: felaktigt argument %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "%s: f�rs�ker forts�tta\n" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: ov�ntat argument\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: kan endast k�ras som root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: kritiskt fel vid l�sning av %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "%s: kan inte l�sa cachekonfiguration" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -347,22 +348,22 @@ msgstr "" " / mellan element | v�ljer | n�sta " "sk�rm" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "� 1999-2001 Red Hat, Inc." -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "dialogen avbr�ts\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "%s: kritiskt fel vid l�sning av mellanlagringsinst�llning" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: kritiskt fel vid skrivning av %s/%s" diff --git a/po/tr.po b/po/tr.po index e5ac13e..0a8d7cd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig \n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 1999-04-09 00:50+0200\n" "Last-Translator: G�rkem �etin \n" "Language-Team: Turkish \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "Uyar�" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "Tamam" @@ -73,274 +73,274 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "NIS Kullan" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "LDAP Kullan" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "TLS Kullan" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "Hesiod Kullan" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "�leri" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "Geri" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "�ptal" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "Kullan�c� Bilgisi Yap�land�rmas�" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "G�lge �ifre Kullan" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "MD5 Sifreleme kullan" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "LDAP Kimlik S�namas� Kullan" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "Kerberos 5 Kullan" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "LDAP Kimlik S�namas� Kullan" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "Kimlik Bilgisi Yap�land�rmas�" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "g�lge parolalar� �ntan�ml� kullan" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "g�lge parola kullanma" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "MD5 parolalar� �ntan�ml� kullan" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "MD5 kullanma\n" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "NIS'i etkinle�tir" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "NIS'i kapat" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "�ntan�ml� NIS alan�" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "�ntan�ml� NIS sunucusu\n" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "kullan�c� bilgisi i�in LDAP'� etkinle�tir" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "kullan�c� bilgisi i�in LDAP'� etkisizle�tir" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "LDAP ile birlikte TLS kullan�ls�n" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "LDAP ile TLS kullan�lmas�n" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "�ntan�ml� kimlik denetimi i�in LDAP kullan" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "�ntan�ml� kimlik denetimi i�in LDAP kullanma" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "�ntan�ml� LDAP sunucusu" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "�ntan�ml� LDAP taban DN\n" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "�ntan�ml� olarak kerberos kimlik denetimini kullan" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "kerberos kimlik denetimini kapat" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "�ntan�ml� olarak kerberos KDC kullan" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "�ntan�ml� kerberos y�netim sunucusu" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "�ntan�ml� kerberos b�lgesi\n" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "�ntan�ml� olarak kerberos kimlik denetimini kullan" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "�ntan�ml� kimlik denetimi i�in LDAP kullanma" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "kullan�c� bilgisi i�in hesiod kullan" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "kullan�c� bilgisi i�in hesiod kullanma" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "kullan�c� bilgisi i�in hesiod kullan" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "kullan�c� bilgisi i�in hesiod kullanma" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "portmap, ypbind, ncsd'yi kapatma/a�ma" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "kullan�c� aray�z�n� g�sterme" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "yerel politikalar� kullan" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "yerel politikalar� kullanma" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: hatal� arg�man %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: beklenmeyen arg�man\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: sadece yetkili kullan�c� (root) taraf�ndan �al��t�r�labilir\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: %s/%s dosyas�n�n okunmas�nda �nemli hata" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "Kullan�c� Bilgisi Yap�land�rmas�" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -348,22 +348,22 @@ msgstr "" " / ileri/geri | i�aretle | sonraki " "ekran" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "(c) 1999-2001 Red Hat" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "diyalog iptal edildi\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: %s/%s dosyas�n�n okunmas�nda �nemli hata" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: %s/%s dosyas�n�n yaz�lmas�nda �nemli hata" diff --git a/po/uk.po b/po/uk.po index 8e3e01d..03fe976 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.1\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2000-08-10 00:29+09:00\n" "Last-Translator: Dmytro Koval'ov \n" "Language-Team: linux@linux.org.ua\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Warning" msgstr "������������" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "���" @@ -73,279 +73,279 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "��������������� NIS" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "��������������� LDAP" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 #, fuzzy msgid "Use TLS" msgstr "��������������� NIS" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "������������� Hesiod" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "���������" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "�����" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "���������" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "���Ʀ����æ� �������æ� ��� �����������" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "��������������� �������Φ ����̦" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "��������������� ����̦ MD5" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "��������������� ���������æ� LDAP" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "��������������� Kerberos 5" -#: ../authconfig.c:635 +#: ../authconfig.c:636 #, fuzzy msgid "Use SMB Authentication" msgstr "��������������� ���������æ� LDAP" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "���Ʀ����æ� ���������æ�" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 #, fuzzy msgid "disable MD5 passwords by default\n" msgstr "��������������� ����̦ MD5" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 #, fuzzy msgid "disable NIS" msgstr "��������������� NIS" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 #, fuzzy msgid "enable LDAP for authentication by default" msgstr "��������������� ���������æ� LDAP" -#: ../authconfig.c:878 +#: ../authconfig.c:879 #, fuzzy msgid "disable LDAP for authentication by default" msgstr "��������������� ���������æ� LDAP" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 #, fuzzy msgid "enable SMB authentication by default" msgstr "��������������� ���������æ� LDAP" -#: ../authconfig.c:898 +#: ../authconfig.c:899 #, fuzzy msgid "disable SMB authentication by default" msgstr "��������������� ���������æ� LDAP" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 #, fuzzy msgid "enable caching of user information by default" msgstr "��������������� ���������æ� LDAP" -#: ../authconfig.c:916 +#: ../authconfig.c:917 #, fuzzy msgid "disable caching of user information by default\n" msgstr "��������������� ���������æ� LDAP" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "%s: ��צ���� �������� %s: %s\n" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "%s: �����Ħ����� ��������\n" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "%s: ��������� ���� �����������צ root\n" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "%s: �������� ������� ������� %s/%s" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, fuzzy, c-format msgid "%s: unable to read caching configuration" msgstr "���Ʀ����æ� �������æ� ��� �����������" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" @@ -353,22 +353,22 @@ msgstr "" " / ͦ� ���������� | ��¦� | ��������� " "�����" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "������ ���� ��������\n" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, fuzzy, c-format msgid "%s: critical error recording caching setting" msgstr "%s: �������� ������� ������� %s/%s" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "%s: �������� ������� ������ %s/%s" diff --git a/po/wa.po b/po/wa.po index ffe6f05..97bebcc 100644 --- a/po/wa.po +++ b/po/wa.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.4\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-02-09 17:22-0500\n" "Last-Translator: Nalin Dahyabhai \n" "Language-Team: English \n" @@ -20,7 +20,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "" @@ -70,290 +70,290 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "" diff --git a/po/zh.po b/po/zh.po index ffe6f05..97bebcc 100644 --- a/po/zh.po +++ b/po/zh.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.4\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-02-09 17:22-0500\n" "Last-Translator: Nalin Dahyabhai \n" "Language-Team: English \n" @@ -20,7 +20,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "" @@ -70,290 +70,290 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr "" diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po index ffe6f05..97bebcc 100644 --- a/po/zh_CN.GB2312.po +++ b/po/zh_CN.GB2312.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: authconfig 4.1.4\n" -"POT-Creation-Date: 2001-08-20 18:52-0400\n" +"POT-Creation-Date: 2001-08-22 18:57-0400\n" "PO-Revision-Date: 2001-02-09 17:22-0500\n" "Last-Translator: Nalin Dahyabhai \n" "Language-Team: English \n" @@ -20,7 +20,7 @@ msgstr "" msgid "Warning" msgstr "" -#: ../authconfig.c:199 ../authconfig.c:674 ../authconfig.c:687 +#: ../authconfig.c:199 ../authconfig.c:675 ../authconfig.c:688 msgid "Ok" msgstr "" @@ -70,290 +70,290 @@ msgid "Cache Information" msgstr "" #. NSS modules: NIS. -#: ../authconfig.c:366 +#: ../authconfig.c:367 msgid "Use NIS" msgstr "" -#: ../authconfig.c:396 +#: ../authconfig.c:397 msgid "Use LDAP" msgstr "" -#: ../authconfig.c:401 ../authconfig.c:564 +#: ../authconfig.c:402 ../authconfig.c:565 msgid "Use TLS" msgstr "" #. NSS modules: hesiod. -#: ../authconfig.c:435 +#: ../authconfig.c:436 msgid "Use Hesiod" msgstr "" -#: ../authconfig.c:465 +#: ../authconfig.c:466 msgid "Next" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:675 ../authconfig.c:688 +#: ../authconfig.c:467 ../authconfig.c:676 ../authconfig.c:689 msgid "Back" msgstr "" -#: ../authconfig.c:466 ../authconfig.c:676 +#: ../authconfig.c:467 ../authconfig.c:677 msgid "Cancel" msgstr "" -#: ../authconfig.c:486 +#: ../authconfig.c:487 msgid "User Information Configuration" msgstr "" -#: ../authconfig.c:547 +#: ../authconfig.c:548 msgid "Use Shadow Passwords" msgstr "" -#: ../authconfig.c:552 +#: ../authconfig.c:553 msgid "Use MD5 Passwords" msgstr "" -#: ../authconfig.c:559 +#: ../authconfig.c:560 msgid "Use LDAP Authentication" msgstr "" -#: ../authconfig.c:597 +#: ../authconfig.c:598 msgid "Use Kerberos 5" msgstr "" -#: ../authconfig.c:635 +#: ../authconfig.c:636 msgid "Use SMB Authentication" msgstr "" -#: ../authconfig.c:705 +#: ../authconfig.c:706 msgid "Authentication Configuration" msgstr "" -#: ../authconfig.c:848 +#: ../authconfig.c:849 msgid "enable shadowed passwords by default" msgstr "" -#: ../authconfig.c:850 +#: ../authconfig.c:851 msgid "disable shadowed passwords by default" msgstr "" -#: ../authconfig.c:854 +#: ../authconfig.c:855 msgid "enable MD5 passwords by default" msgstr "" -#: ../authconfig.c:856 +#: ../authconfig.c:857 msgid "disable MD5 passwords by default\n" msgstr "" -#: ../authconfig.c:859 +#: ../authconfig.c:860 msgid "enable NIS" msgstr "" -#: ../authconfig.c:861 +#: ../authconfig.c:862 msgid "disable NIS" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "default NIS domain" msgstr "" -#: ../authconfig.c:863 +#: ../authconfig.c:864 msgid "" msgstr "" -#: ../authconfig.c:865 +#: ../authconfig.c:866 msgid "default NIS server\n" msgstr "" -#: ../authconfig.c:865 ../authconfig.c:880 ../authconfig.c:889 -#: ../authconfig.c:891 ../authconfig.c:902 +#: ../authconfig.c:866 ../authconfig.c:881 ../authconfig.c:890 +#: ../authconfig.c:892 ../authconfig.c:903 msgid "" msgstr "" -#: ../authconfig.c:868 +#: ../authconfig.c:869 msgid "enable LDAP for user information by default" msgstr "" -#: ../authconfig.c:870 +#: ../authconfig.c:871 msgid "disable LDAP for user information by default" msgstr "" -#: ../authconfig.c:872 +#: ../authconfig.c:873 msgid "enable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:874 +#: ../authconfig.c:875 msgid "disable use of TLS with LDAP" msgstr "" -#: ../authconfig.c:876 +#: ../authconfig.c:877 msgid "enable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:878 +#: ../authconfig.c:879 msgid "disable LDAP for authentication by default" msgstr "" -#: ../authconfig.c:880 +#: ../authconfig.c:881 msgid "default LDAP server" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "default LDAP base DN\n" msgstr "" -#: ../authconfig.c:882 +#: ../authconfig.c:883 msgid "" msgstr "" -#: ../authconfig.c:885 +#: ../authconfig.c:886 msgid "enable kerberos authentication by default" msgstr "" -#: ../authconfig.c:887 +#: ../authconfig.c:888 msgid "disable kerberos authentication by default" msgstr "" -#: ../authconfig.c:889 +#: ../authconfig.c:890 msgid "default kerberos KDC" msgstr "" -#: ../authconfig.c:891 +#: ../authconfig.c:892 msgid "default kerberos admin server" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "default kerberos realm\n" msgstr "" -#: ../authconfig.c:893 +#: ../authconfig.c:894 msgid "" msgstr "" -#: ../authconfig.c:896 +#: ../authconfig.c:897 msgid "enable SMB authentication by default" msgstr "" -#: ../authconfig.c:898 +#: ../authconfig.c:899 msgid "disable SMB authentication by default" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "workgroup authentication servers are in" msgstr "" -#: ../authconfig.c:900 +#: ../authconfig.c:901 msgid "" msgstr "" -#: ../authconfig.c:902 +#: ../authconfig.c:903 msgid "names of servers to authenticate against\n" msgstr "" -#: ../authconfig.c:905 +#: ../authconfig.c:906 msgid "enable hesiod for user information by default" msgstr "" -#: ../authconfig.c:907 +#: ../authconfig.c:908 msgid "disable hesiod for user information by default" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "default hesiod LHS" msgstr "" -#: ../authconfig.c:909 +#: ../authconfig.c:910 msgid "" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "default hesiod RHS\n" msgstr "" -#: ../authconfig.c:911 +#: ../authconfig.c:912 msgid "" msgstr "" -#: ../authconfig.c:914 +#: ../authconfig.c:915 msgid "enable caching of user information by default" msgstr "" -#: ../authconfig.c:916 +#: ../authconfig.c:917 msgid "disable caching of user information by default\n" msgstr "" -#: ../authconfig.c:923 +#: ../authconfig.c:924 msgid "do not start/stop portmap, ypbind, and nscd" msgstr "" -#: ../authconfig.c:925 +#: ../authconfig.c:926 msgid "don't display user interface" msgstr "" -#: ../authconfig.c:927 -msgid "probe network for defaults" +#: ../authconfig.c:928 +msgid "probe network for defaults and print them" msgstr "" -#: ../authconfig.c:930 +#: ../authconfig.c:931 msgid "use locally-defined policies" msgstr "" -#: ../authconfig.c:932 +#: ../authconfig.c:933 msgid "don't use locally-defined policies" msgstr "" -#: ../authconfig.c:943 +#: ../authconfig.c:944 #, c-format msgid "%s: bad argument %s: %s\n" msgstr "" -#: ../authconfig.c:952 +#: ../authconfig.c:953 #, c-format msgid "%s: attempting to continue\n" msgstr "" -#: ../authconfig.c:956 +#: ../authconfig.c:957 #, c-format msgid "%s: unexpected argument\n" msgstr "" -#: ../authconfig.c:983 +#: ../authconfig.c:984 #, c-format msgid "%s: can only be run as root\n" msgstr "" -#: ../authconfig.c:994 ../authconfig.c:1002 ../authconfig.c:1010 -#: ../authconfig.c:1018 ../authconfig.c:1026 ../authconfig.c:1034 -#: ../authconfig.c:1047 ../authconfig.c:1055 +#: ../authconfig.c:995 ../authconfig.c:1003 ../authconfig.c:1011 +#: ../authconfig.c:1019 ../authconfig.c:1027 ../authconfig.c:1035 +#: ../authconfig.c:1048 ../authconfig.c:1056 #, c-format msgid "%s: critical error reading %s/%s" msgstr "" -#: ../authconfig.c:1041 +#: ../authconfig.c:1042 #, c-format msgid "%s: unable to read caching configuration" msgstr "" -#: ../authconfig.c:1117 +#: ../authconfig.c:1118 msgid "" " / between elements | selects | next " "screen" msgstr "" -#: ../authconfig.c:1120 +#: ../authconfig.c:1121 msgid "(c) 1999-2001 Red Hat, Inc." msgstr "" -#: ../authconfig.c:1127 +#: ../authconfig.c:1128 msgid "dialog was cancelled\n" msgstr "" -#: ../authconfig.c:1194 +#: ../authconfig.c:1195 #, c-format msgid "%s: critical error recording caching setting" msgstr "" -#: ../authconfig.c:1200 ../authconfig.c:1206 ../authconfig.c:1212 -#: ../authconfig.c:1218 ../authconfig.c:1224 ../authconfig.c:1229 -#: ../authconfig.c:1234 ../authconfig.c:1240 +#: ../authconfig.c:1201 ../authconfig.c:1207 ../authconfig.c:1213 +#: ../authconfig.c:1219 ../authconfig.c:1225 ../authconfig.c:1230 +#: ../authconfig.c:1235 ../authconfig.c:1241 #, c-format msgid "%s: critical error writing %s/%s" msgstr ""