finish support for libintl

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23752 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-09-07 21:13:13 +00:00
parent 21bf016cd9
commit 7fe1196c96
22 changed files with 4304 additions and 25 deletions

View File

@@ -2,7 +2,7 @@
include $(top_srcdir)/Makefile.am.common
AM_CPPFLAGS += $(INCLUDE_readline) $(INCLUDE_hcrypto) -I$(srcdir)/../lib/krb5
AM_CPPFLAGS += $(INCLUDE_libintl) $(INCLUDE_readline) $(INCLUDE_hcrypto) -I$(srcdir)/../lib/krb5
sbin_PROGRAMS = kadmin

View File

@@ -2,7 +2,7 @@
include $(top_srcdir)/Makefile.am.common
AM_CPPFLAGS += $(INCLUDE_krb4) $(INCLUDE_hcrypto) -I$(srcdir)/../lib/krb5
AM_CPPFLAGS += $(INCLUDE_libintl) $(INCLUDE_krb4) $(INCLUDE_hcrypto) -I$(srcdir)/../lib/krb5
libexec_PROGRAMS = kcm

View File

@@ -2,7 +2,7 @@
include $(top_srcdir)/Makefile.am.common
AM_CPPFLAGS += $(INCLUDE_krb4) $(INCLUDE_hcrypto) -I$(srcdir)/../lib/krb5
AM_CPPFLAGS += $(INCLUDE_libintl) $(INCLUDE_krb4) $(INCLUDE_hcrypto) -I$(srcdir)/../lib/krb5
lib_LTLIBRARIES = libkdc.la

View File

@@ -40,7 +40,7 @@ RCSID("$Id$");
#include <string.h>
#include <com_right.h>
#ifdef HAVE_LIBINTL
#ifdef LIBINTL
#include <libintl.h>
#else
#define dgettext(d,s) (s)
@@ -53,7 +53,7 @@ com_right(struct et_list *list, long code)
for (p = list; p; p = p->next) {
if (code >= p->table->base && code < p->table->base + p->table->n_msgs) {
const char *str = p->table->msgs[code - p->table->base];
#ifdef HAVE_LIBINTL
#ifdef LIBINTL
char domain[12 + 20];
snprintf(domain, sizeof(domain), "heim_com_err%d", p->table->base);
#endif

View File

@@ -7,6 +7,7 @@ AUTOMAKE_OPTIONS = subdir-objects
AM_CPPFLAGS += -I$(srcdir)/../krb5 \
-I$(srcdir) \
-I$(srcdir)/mech \
$(INCLUDE_libintl) \
$(INCLUDE_hcrypto) \
$(INCLUDE_krb4)

View File

@@ -10,6 +10,8 @@ gen-po.sh: gen-po.in
chmod +x gen-po.tmp
mv gen-po.tmp gen-po.sh
ceprefix=heim_com_err
po: gen-po.sh
./gen-po.sh heimdal_krb5 $(top_srcdir)/lib/krb5/*.[chly]
find $(top_srcdir) -name *.et | while read x; do \
@@ -19,25 +21,49 @@ po: gen-po.sh
t=$$(find $(top_builddir) -name $$z.c) ; \
t=$$(echo $$t | sed 's/\.c$$//') ; \
base=$$(grep 'ERROR_TABLE_BASE_' $${t}.h | cut -f3 -d' ') ; \
./gen-po.sh com_err$$base $${t}.c ; \
test -f com_err$$base.pot || { echo "$$t missing" ; exit 1; } \
./gen-po.sh $(ceprefix)$$base $${t}.c ; \
test -f $(top_srcdir)/po/$(ceprefix)$$base/$(ceprefix)$$base.pot || { echo "$$y missing" ; exit 1; } \
done
cp *.pot $(top_srcdir)/po
EXTRA_DIST = \
gen-po.in \
heimdal_krb5.pot \
com_err-1750206208.pot \
com_err-1765328384.pot \
com_err-1980176640.pot \
com_err-969269760.pot \
com_err1859794432.pot \
com_err35224064.pot \
com_err36150272.pot \
com_err39525376.pot \
com_err43787520.pot \
com_err569856.pot
dist mo:
cd $(srcdir) ; \
find . -name '*.po' | while read s ; do \
t=$$(echo $$s | sed -e 's/\.po$$/.mo/') ; \
msgfmt -o $$t $$s ; \
done
install-data-hook:
@for x in $(localefiles) ; do \
domain=`echo $$x | sed 's@/.*@@'`; \
lang=`echo $$x | sed 's@.*/\(.*\)\\.mo@\1@'`; \
echo "installing lang $$domain $$lang" ; \
$(top_srcdir)/install-sh -d "$(localedir)/$$lang/LC_MESSAGES" ; \
$(top_srcdir)/install-sh $(srcdir)/$$x \
"$(localedir)/$$lang/LC_MESSAGES/$$domain.mo" ; \
done
#find . -name '*.mo'
localefiles = \
heimdal_krb5/sv_SE.mo \
heim_com_err-1765328384/sv_SE.mo
#find . -name '*.po' -or -name '*.pot
POFILES = \
heim_com_err-1750206208/heim_com_err-1750206208.pot \
heim_com_err-1765328384/heim_com_err-1765328384.pot \
heim_com_err-1765328384/sv_SE.po \
heim_com_err-1980176640/heim_com_err-1980176640.pot \
heim_com_err-969269760/heim_com_err-969269760.pot \
heim_com_err1859794432/heim_com_err1859794432.pot \
heim_com_err35224064/heim_com_err35224064.pot \
heim_com_err36150272/heim_com_err36150272.pot \
heim_com_err39525376/heim_com_err39525376.pot \
heim_com_err43787520/heim_com_err43787520.pot \
heim_com_err569856/heim_com_err569856.pot \
heimdal_krb5/heimdal_krb5.pot \
heimdal_krb5/sv_SE.po
EXTRA_DIST = gen-po.in $(POFILES) $(localefiles)
CLEANFILES = gen-po.tmp

View File

@@ -7,6 +7,11 @@ version="@PACKAGE_VERSION@"
domain=$1
shift
outdir=${top_srcdir}/po/${domain}
outfile=${outdir}/${domain}.pot
test -d $outdir || mkdir $outdir
xgettext \
--package-name="${name}" \
--package-version="${version}" \
@@ -14,10 +19,13 @@ xgettext \
--default-domain=${domain} \
--add-comments \
--keyword=N_ \
-o ${domain}.pot \
-o ${outfile} \
"$@"
test -f ${domain}.pot && perl -pi -e "s@$top_srcdir/@@" ${domain}.pot
test -f ${outfile} && \
perl -pi -e "s@${top_srcdir}/@@" ${outfile}
diff ${outfile} ${outfile}
exit 0

View File

@@ -0,0 +1,56 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/krb5/k524_err.c:11
msgid "wrong keytype in ticket"
msgstr ""
#. 001
#: ../lib/krb5/k524_err.c:12
msgid "incorrect network address"
msgstr ""
#. 002
#: ../lib/krb5/k524_err.c:13
msgid "cannot convert V5 principal"
msgstr ""
#. 003
#: ../lib/krb5/k524_err.c:14
msgid "V5 realm name longer than V4 maximum"
msgstr ""
#. 004
#: ../lib/krb5/k524_err.c:15
msgid "kerberos V4 error server"
msgstr ""
#. 005
#: ../lib/krb5/k524_err.c:16
msgid "encoding too large at server"
msgstr ""
#. 006
#: ../lib/krb5/k524_err.c:17
msgid "decoding out of data"
msgstr ""
#. 007
#: ../lib/krb5/k524_err.c:18
msgid "service not responding"
msgstr ""

View File

@@ -0,0 +1,979 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/krb5/krb5_err.c:11
msgid "No error"
msgstr ""
#. 001
#: ../lib/krb5/krb5_err.c:12
msgid "Client's entry in database has expired"
msgstr ""
#. 002
#: ../lib/krb5/krb5_err.c:13
msgid "Server's entry in database has expired"
msgstr ""
#. 003
#: ../lib/krb5/krb5_err.c:14
msgid "Requested protocol version not supported"
msgstr ""
#. 004
#: ../lib/krb5/krb5_err.c:15
msgid "Client's key is encrypted in an old master key"
msgstr ""
#. 005
#: ../lib/krb5/krb5_err.c:16
msgid "Server's key is encrypted in an old master key"
msgstr ""
#. 006
#: ../lib/krb5/krb5_err.c:17
msgid "Client not found in Kerberos database"
msgstr ""
#. 007
#: ../lib/krb5/krb5_err.c:18
msgid "Server not found in Kerberos database"
msgstr ""
#. 008
#: ../lib/krb5/krb5_err.c:19
msgid "Principal has multiple entries in Kerberos database"
msgstr ""
#. 009
#: ../lib/krb5/krb5_err.c:20
msgid "Client or server has a null key"
msgstr ""
#. 010
#: ../lib/krb5/krb5_err.c:21
msgid "Ticket is ineligible for postdating"
msgstr ""
#. 011
#: ../lib/krb5/krb5_err.c:22
msgid "Requested effective lifetime is negative or too short"
msgstr ""
#. 012
#: ../lib/krb5/krb5_err.c:23
msgid "KDC policy rejects request"
msgstr ""
#. 013
#: ../lib/krb5/krb5_err.c:24
msgid "KDC can't fulfill requested option"
msgstr ""
#. 014
#: ../lib/krb5/krb5_err.c:25
msgid "KDC has no support for encryption type"
msgstr ""
#. 015
#: ../lib/krb5/krb5_err.c:26
msgid "KDC has no support for checksum type"
msgstr ""
#. 016
#: ../lib/krb5/krb5_err.c:27
msgid "KDC has no support for padata type"
msgstr ""
#. 017
#: ../lib/krb5/krb5_err.c:28
msgid "KDC has no support for transited type"
msgstr ""
#. 018
#: ../lib/krb5/krb5_err.c:29
msgid "Clients credentials have been revoked"
msgstr ""
#. 019
#: ../lib/krb5/krb5_err.c:30
msgid "Credentials for server have been revoked"
msgstr ""
#. 020
#: ../lib/krb5/krb5_err.c:31
msgid "TGT has been revoked"
msgstr ""
#. 021
#: ../lib/krb5/krb5_err.c:32
msgid "Client not yet valid - try again later"
msgstr ""
#. 022
#: ../lib/krb5/krb5_err.c:33
msgid "Server not yet valid - try again later"
msgstr ""
#. 023
#: ../lib/krb5/krb5_err.c:34
msgid "Password has expired"
msgstr ""
#. 024
#: ../lib/krb5/krb5_err.c:35
msgid "Preauthentication failed"
msgstr ""
#. 025
#: ../lib/krb5/krb5_err.c:36
msgid "Additional pre-authentication required"
msgstr ""
#. 026
#: ../lib/krb5/krb5_err.c:37
msgid "Requested server and ticket don't match"
msgstr ""
#. 027
#: ../lib/krb5/krb5_err.c:38
msgid "Server principal valid for user2user only"
msgstr ""
#. 028
#: ../lib/krb5/krb5_err.c:39
msgid "KDC Policy rejects transited path"
msgstr ""
#. 029
#: ../lib/krb5/krb5_err.c:40
msgid "A service is not available"
msgstr ""
#. 030
#. 031
#: ../lib/krb5/krb5_err.c:42
msgid "Decrypt integrity check failed"
msgstr ""
#. 032
#: ../lib/krb5/krb5_err.c:43
msgid "Ticket expired"
msgstr ""
#. 033
#: ../lib/krb5/krb5_err.c:44
msgid "Ticket not yet valid"
msgstr ""
#. 034
#: ../lib/krb5/krb5_err.c:45
msgid "Request is a replay"
msgstr ""
#. 035
#: ../lib/krb5/krb5_err.c:46
msgid "The ticket isn't for us"
msgstr ""
#. 036
#: ../lib/krb5/krb5_err.c:47
msgid "Ticket/authenticator don't match"
msgstr ""
#. 037
#: ../lib/krb5/krb5_err.c:48
msgid "Clock skew too great"
msgstr ""
#. 038
#: ../lib/krb5/krb5_err.c:49
msgid "Incorrect net address"
msgstr ""
#. 039
#: ../lib/krb5/krb5_err.c:50
msgid "Protocol version mismatch"
msgstr ""
#. 040
#: ../lib/krb5/krb5_err.c:51
msgid "Invalid message type"
msgstr ""
#. 041
#: ../lib/krb5/krb5_err.c:52
msgid "Message stream modified"
msgstr ""
#. 042
#: ../lib/krb5/krb5_err.c:53
msgid "Message out of order"
msgstr ""
#. 043
#: ../lib/krb5/krb5_err.c:54
msgid "Invalid cross-realm ticket"
msgstr ""
#. 044
#: ../lib/krb5/krb5_err.c:55
msgid "Key version is not available"
msgstr ""
#. 045
#: ../lib/krb5/krb5_err.c:56
msgid "Service key not available"
msgstr ""
#. 046
#. 158
#: ../lib/krb5/krb5_err.c:57 ../lib/krb5/krb5_err.c:169
msgid "Mutual authentication failed"
msgstr ""
#. 047
#: ../lib/krb5/krb5_err.c:58
msgid "Incorrect message direction"
msgstr ""
#. 048
#: ../lib/krb5/krb5_err.c:59
msgid "Alternative authentication method required"
msgstr ""
#. 049
#: ../lib/krb5/krb5_err.c:60
msgid "Incorrect sequence number in message"
msgstr ""
#. 050
#: ../lib/krb5/krb5_err.c:61
msgid "Inappropriate type of checksum in message"
msgstr ""
#. 051
#: ../lib/krb5/krb5_err.c:62
msgid "Policy rejects transited path"
msgstr ""
#. 052
#: ../lib/krb5/krb5_err.c:63
msgid "Response too big for UDP, retry with TCP"
msgstr ""
#. 053
#. 054
#. 055
#. 056
#. 057
#. 058
#. 059
#. 060
#: ../lib/krb5/krb5_err.c:71
msgid "Generic error (see e-text)"
msgstr ""
#. 061
#: ../lib/krb5/krb5_err.c:72
msgid "Field is too long for this implementation"
msgstr ""
#. 062
#: ../lib/krb5/krb5_err.c:73
msgid "Client not trusted"
msgstr ""
#. 063
#: ../lib/krb5/krb5_err.c:74
msgid "KDC not trusted"
msgstr ""
#. 064
#: ../lib/krb5/krb5_err.c:75
msgid "Invalid signature"
msgstr ""
#. 065
#: ../lib/krb5/krb5_err.c:76
msgid "DH parameters not accepted"
msgstr ""
#. 066
#. 067
#. 068
#: ../lib/krb5/krb5_err.c:79
msgid "Wrong realm"
msgstr ""
#. 069
#: ../lib/krb5/krb5_err.c:80
msgid "User to user required"
msgstr ""
#. 070
#: ../lib/krb5/krb5_err.c:81
msgid "Cannot verify certificate"
msgstr ""
#. 071
#: ../lib/krb5/krb5_err.c:82
msgid "Certificate invalid"
msgstr ""
#. 072
#: ../lib/krb5/krb5_err.c:83
msgid "Certificate revoked"
msgstr ""
#. 073
#: ../lib/krb5/krb5_err.c:84
msgid "Revocation status unknown"
msgstr ""
#. 074
#: ../lib/krb5/krb5_err.c:85
msgid "Revocation status unavaible"
msgstr ""
#. 075
#: ../lib/krb5/krb5_err.c:86
msgid "Client name mismatch in certificate"
msgstr ""
#. 076
#: ../lib/krb5/krb5_err.c:87
msgid "Inconsistent key purpose"
msgstr ""
#. 077
#: ../lib/krb5/krb5_err.c:88
msgid "Digest in certificate not accepted"
msgstr ""
#. 078
#: ../lib/krb5/krb5_err.c:89
msgid "paChecksum must be included"
msgstr ""
#. 079
#: ../lib/krb5/krb5_err.c:90
msgid "Digest in signedData not accepted"
msgstr ""
#. 080
#: ../lib/krb5/krb5_err.c:91
msgid "Public key encryption not supported"
msgstr ""
#. 081
#. 082
#. 083
#. 084
#. 085
#. 086
#. 087
#. 088
#. 089
#. 090
#. 091
#. 092
#. 093
#. 094
#. 095
#. 096
#. 097
#. 098
#. 099
#. 100
#. 101
#. 102
#. 103
#. 104
#. 105
#. 106
#. 107
#. 108
#. 109
#. 110
#. 111
#. 112
#. 113
#. 114
#. 115
#. 116
#. 117
#. 118
#. 119
#. 120
#. 121
#. 122
#. 123
#. 124
#. 125
#. 126
#. 127
#. 128
#: ../lib/krb5/krb5_err.c:139
msgid "$Id$"
msgstr ""
#. 129
#: ../lib/krb5/krb5_err.c:140
msgid "Invalid flag for file lock mode"
msgstr ""
#. 130
#: ../lib/krb5/krb5_err.c:141
msgid "Cannot read password"
msgstr ""
#. 131
#: ../lib/krb5/krb5_err.c:142
msgid "Password mismatch"
msgstr ""
#. 132
#: ../lib/krb5/krb5_err.c:143
msgid "Password read interrupted"
msgstr ""
#. 133
#: ../lib/krb5/krb5_err.c:144
msgid "Invalid character in component name"
msgstr ""
#. 134
#: ../lib/krb5/krb5_err.c:145
msgid "Malformed representation of principal"
msgstr ""
#. 135
#: ../lib/krb5/krb5_err.c:146
msgid "Can't open/find configuration file"
msgstr ""
#. 136
#: ../lib/krb5/krb5_err.c:147
msgid "Improper format of configuration file"
msgstr ""
#. 137
#: ../lib/krb5/krb5_err.c:148
msgid "Insufficient space to return complete information"
msgstr ""
#. 138
#: ../lib/krb5/krb5_err.c:149
msgid "Invalid message type specified for encoding"
msgstr ""
#. 139
#: ../lib/krb5/krb5_err.c:150
msgid "Credential cache name malformed"
msgstr ""
#. 140
#: ../lib/krb5/krb5_err.c:151
msgid "Unknown credential cache type"
msgstr ""
#. 141
#: ../lib/krb5/krb5_err.c:152
msgid "Matching credential not found"
msgstr ""
#. 142
#: ../lib/krb5/krb5_err.c:153
msgid "End of credential cache reached"
msgstr ""
#. 143
#: ../lib/krb5/krb5_err.c:154
msgid "Request did not supply a ticket"
msgstr ""
#. 144
#: ../lib/krb5/krb5_err.c:155
msgid "Wrong principal in request"
msgstr ""
#. 145
#: ../lib/krb5/krb5_err.c:156
msgid "Ticket has invalid flag set"
msgstr ""
#. 146
#: ../lib/krb5/krb5_err.c:157
msgid "Requested principal and ticket don't match"
msgstr ""
#. 147
#: ../lib/krb5/krb5_err.c:158
msgid "KDC reply did not match expectations"
msgstr ""
#. 148
#: ../lib/krb5/krb5_err.c:159
msgid "Clock skew too great in KDC reply"
msgstr ""
#. 149
#: ../lib/krb5/krb5_err.c:160
msgid "Client/server realm mismatch in initial ticket request"
msgstr ""
#. 150
#: ../lib/krb5/krb5_err.c:161
msgid "Program lacks support for encryption type"
msgstr ""
#. 151
#: ../lib/krb5/krb5_err.c:162
msgid "Program lacks support for key type"
msgstr ""
#. 152
#: ../lib/krb5/krb5_err.c:163
msgid "Requested encryption type not used in message"
msgstr ""
#. 153
#: ../lib/krb5/krb5_err.c:164
msgid "Program lacks support for checksum type"
msgstr ""
#. 154
#: ../lib/krb5/krb5_err.c:165
msgid "Cannot find KDC for requested realm"
msgstr ""
#. 155
#: ../lib/krb5/krb5_err.c:166
msgid "Kerberos service unknown"
msgstr ""
#. 156
#: ../lib/krb5/krb5_err.c:167
msgid "Cannot contact any KDC for requested realm"
msgstr ""
#. 157
#: ../lib/krb5/krb5_err.c:168
msgid "No local name found for principal name"
msgstr ""
#. 159
#: ../lib/krb5/krb5_err.c:170
msgid "Replay cache type is already registered"
msgstr ""
#. 160
#: ../lib/krb5/krb5_err.c:171
msgid "No more memory to allocate (in replay cache code)"
msgstr ""
#. 161
#: ../lib/krb5/krb5_err.c:172
msgid "Replay cache type is unknown"
msgstr ""
#. 162
#: ../lib/krb5/krb5_err.c:173
msgid "Generic unknown RC error"
msgstr ""
#. 163
#: ../lib/krb5/krb5_err.c:174
msgid "Message is a replay"
msgstr ""
#. 164
#: ../lib/krb5/krb5_err.c:175
msgid "Replay I/O operation failed XXX"
msgstr ""
#. 165
#: ../lib/krb5/krb5_err.c:176
msgid "Replay cache type does not support non-volatile storage"
msgstr ""
#. 166
#: ../lib/krb5/krb5_err.c:177
msgid "Replay cache name parse/format error"
msgstr ""
#. 167
#: ../lib/krb5/krb5_err.c:178
msgid "End-of-file on replay cache I/O"
msgstr ""
#. 168
#: ../lib/krb5/krb5_err.c:179
msgid "No more memory to allocate (in replay cache I/O code)"
msgstr ""
#. 169
#: ../lib/krb5/krb5_err.c:180
msgid "Permission denied in replay cache code"
msgstr ""
#. 170
#: ../lib/krb5/krb5_err.c:181
msgid "I/O error in replay cache i/o code"
msgstr ""
#. 171
#: ../lib/krb5/krb5_err.c:182
msgid "Generic unknown RC/IO error"
msgstr ""
#. 172
#: ../lib/krb5/krb5_err.c:183
msgid "Insufficient system space to store replay information"
msgstr ""
#. 173
#: ../lib/krb5/krb5_err.c:184
msgid "Can't open/find realm translation file"
msgstr ""
#. 174
#: ../lib/krb5/krb5_err.c:185
msgid "Improper format of realm translation file"
msgstr ""
#. 175
#: ../lib/krb5/krb5_err.c:186
msgid "Can't open/find lname translation database"
msgstr ""
#. 176
#: ../lib/krb5/krb5_err.c:187
msgid "No translation available for requested principal"
msgstr ""
#. 177
#: ../lib/krb5/krb5_err.c:188
msgid "Improper format of translation database entry"
msgstr ""
#. 178
#: ../lib/krb5/krb5_err.c:189
msgid "Cryptosystem internal error"
msgstr ""
#. 179
#: ../lib/krb5/krb5_err.c:190
msgid "Key table name malformed"
msgstr ""
#. 180
#: ../lib/krb5/krb5_err.c:191
msgid "Unknown Key table type"
msgstr ""
#. 181
#: ../lib/krb5/krb5_err.c:192
msgid "Key table entry not found"
msgstr ""
#. 182
#: ../lib/krb5/krb5_err.c:193
msgid "End of key table reached"
msgstr ""
#. 183
#: ../lib/krb5/krb5_err.c:194
msgid "Cannot write to specified key table"
msgstr ""
#. 184
#: ../lib/krb5/krb5_err.c:195
msgid "Error writing to key table"
msgstr ""
#. 185
#: ../lib/krb5/krb5_err.c:196
msgid "Cannot find ticket for requested realm"
msgstr ""
#. 186
#: ../lib/krb5/krb5_err.c:197
msgid "DES key has bad parity"
msgstr ""
#. 187
#: ../lib/krb5/krb5_err.c:198
msgid "DES key is a weak key"
msgstr ""
#. 188
#: ../lib/krb5/krb5_err.c:199
msgid "Bad encryption type"
msgstr ""
#. 189
#: ../lib/krb5/krb5_err.c:200
msgid "Key size is incompatible with encryption type"
msgstr ""
#. 190
#: ../lib/krb5/krb5_err.c:201
msgid "Message size is incompatible with encryption type"
msgstr ""
#. 191
#: ../lib/krb5/krb5_err.c:202
msgid "Credentials cache type is already registered."
msgstr ""
#. 192
#: ../lib/krb5/krb5_err.c:203
msgid "Key table type is already registered."
msgstr ""
#. 193
#: ../lib/krb5/krb5_err.c:204
msgid "Credentials cache I/O operation failed XXX"
msgstr ""
#. 194
#: ../lib/krb5/krb5_err.c:205
msgid "Credentials cache file permissions incorrect"
msgstr ""
#. 195
#: ../lib/krb5/krb5_err.c:206
msgid "No credentials cache file found"
msgstr ""
#. 196
#: ../lib/krb5/krb5_err.c:207
msgid "Internal file credentials cache error"
msgstr ""
#. 197
#: ../lib/krb5/krb5_err.c:208
msgid "Error writing to credentials cache file"
msgstr ""
#. 198
#: ../lib/krb5/krb5_err.c:209
msgid "No more memory to allocate (in credentials cache code)"
msgstr ""
#. 199
#: ../lib/krb5/krb5_err.c:210
msgid "Bad format in credentials cache"
msgstr ""
#. 200
#: ../lib/krb5/krb5_err.c:211
msgid "No credentials found with supported encryption types"
msgstr ""
#. 201
#: ../lib/krb5/krb5_err.c:212
msgid "Invalid KDC option combination (library internal error)"
msgstr ""
#. 202
#: ../lib/krb5/krb5_err.c:213
msgid "Request missing second ticket"
msgstr ""
#. 203
#: ../lib/krb5/krb5_err.c:214
msgid "No credentials supplied to library routine"
msgstr ""
#. 204
#: ../lib/krb5/krb5_err.c:215
msgid "Bad sendauth version was sent"
msgstr ""
#. 205
#: ../lib/krb5/krb5_err.c:216
msgid "Bad application version was sent (via sendauth)"
msgstr ""
#. 206
#: ../lib/krb5/krb5_err.c:217
msgid "Bad response (during sendauth exchange)"
msgstr ""
#. 207
#: ../lib/krb5/krb5_err.c:218
msgid "Server rejected authentication (during sendauth exchange)"
msgstr ""
#. 208
#: ../lib/krb5/krb5_err.c:219
msgid "Unsupported preauthentication type"
msgstr ""
#. 209
#: ../lib/krb5/krb5_err.c:220
msgid "Required preauthentication key not supplied"
msgstr ""
#. 210
#: ../lib/krb5/krb5_err.c:221
msgid "Generic preauthentication failure"
msgstr ""
#. 211
#: ../lib/krb5/krb5_err.c:222
msgid "Unsupported replay cache format version number"
msgstr ""
#. 212
#: ../lib/krb5/krb5_err.c:223
msgid "Unsupported credentials cache format version number"
msgstr ""
#. 213
#: ../lib/krb5/krb5_err.c:224
msgid "Unsupported key table format version number"
msgstr ""
#. 214
#: ../lib/krb5/krb5_err.c:225
msgid "Program lacks support for address type"
msgstr ""
#. 215
#: ../lib/krb5/krb5_err.c:226
msgid "Message replay detection requires rcache parameter"
msgstr ""
#. 216
#: ../lib/krb5/krb5_err.c:227
msgid "Hostname cannot be canonicalized"
msgstr ""
#. 217
#: ../lib/krb5/krb5_err.c:228
msgid "Cannot determine realm for host"
msgstr ""
#. 218
#: ../lib/krb5/krb5_err.c:229
msgid "Conversion to service principal undefined for name type"
msgstr ""
#. 219
#: ../lib/krb5/krb5_err.c:230
msgid "Initial Ticket response appears to be Version 4"
msgstr ""
#. 220
#: ../lib/krb5/krb5_err.c:231
msgid "Cannot resolve KDC for requested realm"
msgstr ""
#. 221
#: ../lib/krb5/krb5_err.c:232
msgid "Requesting ticket can't get forwardable tickets"
msgstr ""
#. 222
#: ../lib/krb5/krb5_err.c:233
msgid "Bad principal name while trying to forward credentials"
msgstr ""
#. 223
#: ../lib/krb5/krb5_err.c:234
msgid "Looping detected inside krb5_get_in_tkt"
msgstr ""
#. 224
#: ../lib/krb5/krb5_err.c:235
msgid "Configuration file does not specify default realm"
msgstr ""
#. 225
#: ../lib/krb5/krb5_err.c:236
msgid "Bad SAM flags in obtain_sam_padata"
msgstr ""
#. 226
#: ../lib/krb5/krb5_err.c:237
msgid "Invalid encryption type in SAM challenge"
msgstr ""
#. 227
#: ../lib/krb5/krb5_err.c:238
msgid "Missing checksum in SAM challenge"
msgstr ""
#. 228
#: ../lib/krb5/krb5_err.c:239
msgid "Bad checksum in SAM challenge"
msgstr ""
#. 229
#. 230
#. 231
#. 232
#. 233
#. 234
#. 235
#. 236
#. 237
#. 238
#: ../lib/krb5/krb5_err.c:249
msgid "Program called an obsolete, deleted function"
msgstr ""
#. 239
#. 240
#. 241
#. 242
#. 243
#. 244
#. 245
#: ../lib/krb5/krb5_err.c:256
msgid "Invalid key generation parameters from KDC"
msgstr ""
#. 246
#: ../lib/krb5/krb5_err.c:257
msgid "Service not available"
msgstr ""
#. 247
#: ../lib/krb5/krb5_err.c:258
msgid "Credential cache function not supported"
msgstr ""
#. 248
#: ../lib/krb5/krb5_err.c:259
msgid "Invalid format of Kerberos lifetime or clock skew string"
msgstr ""
#. 249
#: ../lib/krb5/krb5_err.c:260
msgid "Supplied data not handled by this plugin"
msgstr ""
#. 250
#: ../lib/krb5/krb5_err.c:261
msgid "Plugin does not support the operaton"
msgstr ""

Binary file not shown.

View File

@@ -0,0 +1,980 @@
# Swedish translations for heim_com_err package
# Svenska översättningar för paket heim_com_err.
# This file is put in the public domain.
# Love Hornquist Astrand <>, 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 13:06+0100\n"
"PO-Revision-Date: 2008-09-07 13:32+0100\n"
"Last-Translator: Love Hornquist Astrand <>\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. 000
#: ../lib/krb5/krb5_err.c:11
msgid "No error"
msgstr ""
#. 001
#: ../lib/krb5/krb5_err.c:12
msgid "Client's entry in database has expired"
msgstr "Klientens post i databasen har gått ut"
#. 002
#: ../lib/krb5/krb5_err.c:13
msgid "Server's entry in database has expired"
msgstr ""
#. 003
#: ../lib/krb5/krb5_err.c:14
msgid "Requested protocol version not supported"
msgstr ""
#. 004
#: ../lib/krb5/krb5_err.c:15
msgid "Client's key is encrypted in an old master key"
msgstr ""
#. 005
#: ../lib/krb5/krb5_err.c:16
msgid "Server's key is encrypted in an old master key"
msgstr ""
#. 006
#: ../lib/krb5/krb5_err.c:17
msgid "Client not found in Kerberos database"
msgstr ""
#. 007
#: ../lib/krb5/krb5_err.c:18
msgid "Server not found in Kerberos database"
msgstr ""
#. 008
#: ../lib/krb5/krb5_err.c:19
msgid "Principal has multiple entries in Kerberos database"
msgstr ""
#. 009
#: ../lib/krb5/krb5_err.c:20
msgid "Client or server has a null key"
msgstr ""
#. 010
#: ../lib/krb5/krb5_err.c:21
msgid "Ticket is ineligible for postdating"
msgstr ""
#. 011
#: ../lib/krb5/krb5_err.c:22
msgid "Requested effective lifetime is negative or too short"
msgstr ""
#. 012
#: ../lib/krb5/krb5_err.c:23
msgid "KDC policy rejects request"
msgstr ""
#. 013
#: ../lib/krb5/krb5_err.c:24
msgid "KDC can't fulfill requested option"
msgstr ""
#. 014
#: ../lib/krb5/krb5_err.c:25
msgid "KDC has no support for encryption type"
msgstr ""
#. 015
#: ../lib/krb5/krb5_err.c:26
msgid "KDC has no support for checksum type"
msgstr ""
#. 016
#: ../lib/krb5/krb5_err.c:27
msgid "KDC has no support for padata type"
msgstr ""
#. 017
#: ../lib/krb5/krb5_err.c:28
msgid "KDC has no support for transited type"
msgstr ""
#. 018
#: ../lib/krb5/krb5_err.c:29
msgid "Clients credentials have been revoked"
msgstr ""
#. 019
#: ../lib/krb5/krb5_err.c:30
msgid "Credentials for server have been revoked"
msgstr ""
#. 020
#: ../lib/krb5/krb5_err.c:31
msgid "TGT has been revoked"
msgstr ""
#. 021
#: ../lib/krb5/krb5_err.c:32
msgid "Client not yet valid - try again later"
msgstr ""
#. 022
#: ../lib/krb5/krb5_err.c:33
msgid "Server not yet valid - try again later"
msgstr ""
#. 023
#: ../lib/krb5/krb5_err.c:34
msgid "Password has expired"
msgstr ""
#. 024
#: ../lib/krb5/krb5_err.c:35
msgid "Preauthentication failed"
msgstr ""
#. 025
#: ../lib/krb5/krb5_err.c:36
msgid "Additional pre-authentication required"
msgstr ""
#. 026
#: ../lib/krb5/krb5_err.c:37
msgid "Requested server and ticket don't match"
msgstr ""
#. 027
#: ../lib/krb5/krb5_err.c:38
msgid "Server principal valid for user2user only"
msgstr ""
#. 028
#: ../lib/krb5/krb5_err.c:39
msgid "KDC Policy rejects transited path"
msgstr ""
#. 029
#: ../lib/krb5/krb5_err.c:40
msgid "A service is not available"
msgstr ""
#. 030
#. 031
#: ../lib/krb5/krb5_err.c:42
msgid "Decrypt integrity check failed"
msgstr ""
#. 032
#: ../lib/krb5/krb5_err.c:43
msgid "Ticket expired"
msgstr ""
#. 033
#: ../lib/krb5/krb5_err.c:44
msgid "Ticket not yet valid"
msgstr ""
#. 034
#: ../lib/krb5/krb5_err.c:45
msgid "Request is a replay"
msgstr ""
#. 035
#: ../lib/krb5/krb5_err.c:46
msgid "The ticket isn't for us"
msgstr ""
#. 036
#: ../lib/krb5/krb5_err.c:47
msgid "Ticket/authenticator don't match"
msgstr ""
#. 037
#: ../lib/krb5/krb5_err.c:48
msgid "Clock skew too great"
msgstr ""
#. 038
#: ../lib/krb5/krb5_err.c:49
msgid "Incorrect net address"
msgstr ""
#. 039
#: ../lib/krb5/krb5_err.c:50
msgid "Protocol version mismatch"
msgstr ""
#. 040
#: ../lib/krb5/krb5_err.c:51
msgid "Invalid message type"
msgstr ""
#. 041
#: ../lib/krb5/krb5_err.c:52
msgid "Message stream modified"
msgstr ""
#. 042
#: ../lib/krb5/krb5_err.c:53
msgid "Message out of order"
msgstr ""
#. 043
#: ../lib/krb5/krb5_err.c:54
msgid "Invalid cross-realm ticket"
msgstr ""
#. 044
#: ../lib/krb5/krb5_err.c:55
msgid "Key version is not available"
msgstr ""
#. 045
#: ../lib/krb5/krb5_err.c:56
msgid "Service key not available"
msgstr ""
#. 046
#. 158
#: ../lib/krb5/krb5_err.c:57 ../lib/krb5/krb5_err.c:169
msgid "Mutual authentication failed"
msgstr ""
#. 047
#: ../lib/krb5/krb5_err.c:58
msgid "Incorrect message direction"
msgstr ""
#. 048
#: ../lib/krb5/krb5_err.c:59
msgid "Alternative authentication method required"
msgstr ""
#. 049
#: ../lib/krb5/krb5_err.c:60
msgid "Incorrect sequence number in message"
msgstr ""
#. 050
#: ../lib/krb5/krb5_err.c:61
msgid "Inappropriate type of checksum in message"
msgstr ""
#. 051
#: ../lib/krb5/krb5_err.c:62
msgid "Policy rejects transited path"
msgstr ""
#. 052
#: ../lib/krb5/krb5_err.c:63
msgid "Response too big for UDP, retry with TCP"
msgstr ""
#. 053
#. 054
#. 055
#. 056
#. 057
#. 058
#. 059
#. 060
#: ../lib/krb5/krb5_err.c:71
msgid "Generic error (see e-text)"
msgstr ""
#. 061
#: ../lib/krb5/krb5_err.c:72
msgid "Field is too long for this implementation"
msgstr ""
#. 062
#: ../lib/krb5/krb5_err.c:73
msgid "Client not trusted"
msgstr ""
#. 063
#: ../lib/krb5/krb5_err.c:74
msgid "KDC not trusted"
msgstr ""
#. 064
#: ../lib/krb5/krb5_err.c:75
msgid "Invalid signature"
msgstr ""
#. 065
#: ../lib/krb5/krb5_err.c:76
msgid "DH parameters not accepted"
msgstr ""
#. 066
#. 067
#. 068
#: ../lib/krb5/krb5_err.c:79
msgid "Wrong realm"
msgstr ""
#. 069
#: ../lib/krb5/krb5_err.c:80
msgid "User to user required"
msgstr ""
#. 070
#: ../lib/krb5/krb5_err.c:81
msgid "Cannot verify certificate"
msgstr ""
#. 071
#: ../lib/krb5/krb5_err.c:82
msgid "Certificate invalid"
msgstr ""
#. 072
#: ../lib/krb5/krb5_err.c:83
msgid "Certificate revoked"
msgstr ""
#. 073
#: ../lib/krb5/krb5_err.c:84
msgid "Revocation status unknown"
msgstr ""
#. 074
#: ../lib/krb5/krb5_err.c:85
msgid "Revocation status unavaible"
msgstr ""
#. 075
#: ../lib/krb5/krb5_err.c:86
msgid "Client name mismatch in certificate"
msgstr ""
#. 076
#: ../lib/krb5/krb5_err.c:87
msgid "Inconsistent key purpose"
msgstr ""
#. 077
#: ../lib/krb5/krb5_err.c:88
msgid "Digest in certificate not accepted"
msgstr ""
#. 078
#: ../lib/krb5/krb5_err.c:89
msgid "paChecksum must be included"
msgstr ""
#. 079
#: ../lib/krb5/krb5_err.c:90
msgid "Digest in signedData not accepted"
msgstr ""
#. 080
#: ../lib/krb5/krb5_err.c:91
msgid "Public key encryption not supported"
msgstr ""
#. 081
#. 082
#. 083
#. 084
#. 085
#. 086
#. 087
#. 088
#. 089
#. 090
#. 091
#. 092
#. 093
#. 094
#. 095
#. 096
#. 097
#. 098
#. 099
#. 100
#. 101
#. 102
#. 103
#. 104
#. 105
#. 106
#. 107
#. 108
#. 109
#. 110
#. 111
#. 112
#. 113
#. 114
#. 115
#. 116
#. 117
#. 118
#. 119
#. 120
#. 121
#. 122
#. 123
#. 124
#. 125
#. 126
#. 127
#. 128
#: ../lib/krb5/krb5_err.c:139
msgid "$Id$"
msgstr ""
#. 129
#: ../lib/krb5/krb5_err.c:140
msgid "Invalid flag for file lock mode"
msgstr ""
#. 130
#: ../lib/krb5/krb5_err.c:141
msgid "Cannot read password"
msgstr ""
#. 131
#: ../lib/krb5/krb5_err.c:142
msgid "Password mismatch"
msgstr ""
#. 132
#: ../lib/krb5/krb5_err.c:143
msgid "Password read interrupted"
msgstr ""
#. 133
#: ../lib/krb5/krb5_err.c:144
msgid "Invalid character in component name"
msgstr ""
#. 134
#: ../lib/krb5/krb5_err.c:145
msgid "Malformed representation of principal"
msgstr ""
#. 135
#: ../lib/krb5/krb5_err.c:146
msgid "Can't open/find configuration file"
msgstr ""
#. 136
#: ../lib/krb5/krb5_err.c:147
msgid "Improper format of configuration file"
msgstr ""
#. 137
#: ../lib/krb5/krb5_err.c:148
msgid "Insufficient space to return complete information"
msgstr ""
#. 138
#: ../lib/krb5/krb5_err.c:149
msgid "Invalid message type specified for encoding"
msgstr ""
#. 139
#: ../lib/krb5/krb5_err.c:150
msgid "Credential cache name malformed"
msgstr ""
#. 140
#: ../lib/krb5/krb5_err.c:151
msgid "Unknown credential cache type"
msgstr ""
#. 141
#: ../lib/krb5/krb5_err.c:152
msgid "Matching credential not found"
msgstr ""
#. 142
#: ../lib/krb5/krb5_err.c:153
msgid "End of credential cache reached"
msgstr ""
#. 143
#: ../lib/krb5/krb5_err.c:154
msgid "Request did not supply a ticket"
msgstr ""
#. 144
#: ../lib/krb5/krb5_err.c:155
msgid "Wrong principal in request"
msgstr ""
#. 145
#: ../lib/krb5/krb5_err.c:156
msgid "Ticket has invalid flag set"
msgstr ""
#. 146
#: ../lib/krb5/krb5_err.c:157
msgid "Requested principal and ticket don't match"
msgstr ""
#. 147
#: ../lib/krb5/krb5_err.c:158
msgid "KDC reply did not match expectations"
msgstr ""
#. 148
#: ../lib/krb5/krb5_err.c:159
msgid "Clock skew too great in KDC reply"
msgstr ""
#. 149
#: ../lib/krb5/krb5_err.c:160
msgid "Client/server realm mismatch in initial ticket request"
msgstr ""
#. 150
#: ../lib/krb5/krb5_err.c:161
msgid "Program lacks support for encryption type"
msgstr ""
#. 151
#: ../lib/krb5/krb5_err.c:162
msgid "Program lacks support for key type"
msgstr ""
#. 152
#: ../lib/krb5/krb5_err.c:163
msgid "Requested encryption type not used in message"
msgstr ""
#. 153
#: ../lib/krb5/krb5_err.c:164
msgid "Program lacks support for checksum type"
msgstr ""
#. 154
#: ../lib/krb5/krb5_err.c:165
msgid "Cannot find KDC for requested realm"
msgstr ""
#. 155
#: ../lib/krb5/krb5_err.c:166
msgid "Kerberos service unknown"
msgstr ""
#. 156
#: ../lib/krb5/krb5_err.c:167
msgid "Cannot contact any KDC for requested realm"
msgstr ""
#. 157
#: ../lib/krb5/krb5_err.c:168
msgid "No local name found for principal name"
msgstr ""
#. 159
#: ../lib/krb5/krb5_err.c:170
msgid "Replay cache type is already registered"
msgstr ""
#. 160
#: ../lib/krb5/krb5_err.c:171
msgid "No more memory to allocate (in replay cache code)"
msgstr ""
#. 161
#: ../lib/krb5/krb5_err.c:172
msgid "Replay cache type is unknown"
msgstr ""
#. 162
#: ../lib/krb5/krb5_err.c:173
msgid "Generic unknown RC error"
msgstr ""
#. 163
#: ../lib/krb5/krb5_err.c:174
msgid "Message is a replay"
msgstr ""
#. 164
#: ../lib/krb5/krb5_err.c:175
msgid "Replay I/O operation failed XXX"
msgstr ""
#. 165
#: ../lib/krb5/krb5_err.c:176
msgid "Replay cache type does not support non-volatile storage"
msgstr ""
#. 166
#: ../lib/krb5/krb5_err.c:177
msgid "Replay cache name parse/format error"
msgstr ""
#. 167
#: ../lib/krb5/krb5_err.c:178
msgid "End-of-file on replay cache I/O"
msgstr ""
#. 168
#: ../lib/krb5/krb5_err.c:179
msgid "No more memory to allocate (in replay cache I/O code)"
msgstr ""
#. 169
#: ../lib/krb5/krb5_err.c:180
msgid "Permission denied in replay cache code"
msgstr ""
#. 170
#: ../lib/krb5/krb5_err.c:181
msgid "I/O error in replay cache i/o code"
msgstr ""
#. 171
#: ../lib/krb5/krb5_err.c:182
msgid "Generic unknown RC/IO error"
msgstr ""
#. 172
#: ../lib/krb5/krb5_err.c:183
msgid "Insufficient system space to store replay information"
msgstr ""
#. 173
#: ../lib/krb5/krb5_err.c:184
msgid "Can't open/find realm translation file"
msgstr ""
#. 174
#: ../lib/krb5/krb5_err.c:185
msgid "Improper format of realm translation file"
msgstr ""
#. 175
#: ../lib/krb5/krb5_err.c:186
msgid "Can't open/find lname translation database"
msgstr ""
#. 176
#: ../lib/krb5/krb5_err.c:187
msgid "No translation available for requested principal"
msgstr ""
#. 177
#: ../lib/krb5/krb5_err.c:188
msgid "Improper format of translation database entry"
msgstr ""
#. 178
#: ../lib/krb5/krb5_err.c:189
msgid "Cryptosystem internal error"
msgstr ""
#. 179
#: ../lib/krb5/krb5_err.c:190
msgid "Key table name malformed"
msgstr ""
#. 180
#: ../lib/krb5/krb5_err.c:191
msgid "Unknown Key table type"
msgstr ""
#. 181
#: ../lib/krb5/krb5_err.c:192
msgid "Key table entry not found"
msgstr ""
#. 182
#: ../lib/krb5/krb5_err.c:193
msgid "End of key table reached"
msgstr ""
#. 183
#: ../lib/krb5/krb5_err.c:194
msgid "Cannot write to specified key table"
msgstr ""
#. 184
#: ../lib/krb5/krb5_err.c:195
msgid "Error writing to key table"
msgstr ""
#. 185
#: ../lib/krb5/krb5_err.c:196
msgid "Cannot find ticket for requested realm"
msgstr ""
#. 186
#: ../lib/krb5/krb5_err.c:197
msgid "DES key has bad parity"
msgstr ""
#. 187
#: ../lib/krb5/krb5_err.c:198
msgid "DES key is a weak key"
msgstr ""
#. 188
#: ../lib/krb5/krb5_err.c:199
msgid "Bad encryption type"
msgstr ""
#. 189
#: ../lib/krb5/krb5_err.c:200
msgid "Key size is incompatible with encryption type"
msgstr ""
#. 190
#: ../lib/krb5/krb5_err.c:201
msgid "Message size is incompatible with encryption type"
msgstr ""
#. 191
#: ../lib/krb5/krb5_err.c:202
msgid "Credentials cache type is already registered."
msgstr ""
#. 192
#: ../lib/krb5/krb5_err.c:203
msgid "Key table type is already registered."
msgstr ""
#. 193
#: ../lib/krb5/krb5_err.c:204
msgid "Credentials cache I/O operation failed XXX"
msgstr ""
#. 194
#: ../lib/krb5/krb5_err.c:205
msgid "Credentials cache file permissions incorrect"
msgstr ""
#. 195
#: ../lib/krb5/krb5_err.c:206
msgid "No credentials cache file found"
msgstr ""
#. 196
#: ../lib/krb5/krb5_err.c:207
msgid "Internal file credentials cache error"
msgstr ""
#. 197
#: ../lib/krb5/krb5_err.c:208
msgid "Error writing to credentials cache file"
msgstr ""
#. 198
#: ../lib/krb5/krb5_err.c:209
msgid "No more memory to allocate (in credentials cache code)"
msgstr ""
#. 199
#: ../lib/krb5/krb5_err.c:210
msgid "Bad format in credentials cache"
msgstr ""
#. 200
#: ../lib/krb5/krb5_err.c:211
msgid "No credentials found with supported encryption types"
msgstr ""
#. 201
#: ../lib/krb5/krb5_err.c:212
msgid "Invalid KDC option combination (library internal error)"
msgstr ""
#. 202
#: ../lib/krb5/krb5_err.c:213
msgid "Request missing second ticket"
msgstr ""
#. 203
#: ../lib/krb5/krb5_err.c:214
msgid "No credentials supplied to library routine"
msgstr ""
#. 204
#: ../lib/krb5/krb5_err.c:215
msgid "Bad sendauth version was sent"
msgstr ""
#. 205
#: ../lib/krb5/krb5_err.c:216
msgid "Bad application version was sent (via sendauth)"
msgstr ""
#. 206
#: ../lib/krb5/krb5_err.c:217
msgid "Bad response (during sendauth exchange)"
msgstr ""
#. 207
#: ../lib/krb5/krb5_err.c:218
msgid "Server rejected authentication (during sendauth exchange)"
msgstr ""
#. 208
#: ../lib/krb5/krb5_err.c:219
msgid "Unsupported preauthentication type"
msgstr ""
#. 209
#: ../lib/krb5/krb5_err.c:220
msgid "Required preauthentication key not supplied"
msgstr ""
#. 210
#: ../lib/krb5/krb5_err.c:221
msgid "Generic preauthentication failure"
msgstr ""
#. 211
#: ../lib/krb5/krb5_err.c:222
msgid "Unsupported replay cache format version number"
msgstr ""
#. 212
#: ../lib/krb5/krb5_err.c:223
msgid "Unsupported credentials cache format version number"
msgstr ""
#. 213
#: ../lib/krb5/krb5_err.c:224
msgid "Unsupported key table format version number"
msgstr ""
#. 214
#: ../lib/krb5/krb5_err.c:225
msgid "Program lacks support for address type"
msgstr ""
#. 215
#: ../lib/krb5/krb5_err.c:226
msgid "Message replay detection requires rcache parameter"
msgstr ""
#. 216
#: ../lib/krb5/krb5_err.c:227
msgid "Hostname cannot be canonicalized"
msgstr ""
#. 217
#: ../lib/krb5/krb5_err.c:228
msgid "Cannot determine realm for host"
msgstr ""
#. 218
#: ../lib/krb5/krb5_err.c:229
msgid "Conversion to service principal undefined for name type"
msgstr ""
#. 219
#: ../lib/krb5/krb5_err.c:230
msgid "Initial Ticket response appears to be Version 4"
msgstr ""
#. 220
#: ../lib/krb5/krb5_err.c:231
msgid "Cannot resolve KDC for requested realm"
msgstr ""
#. 221
#: ../lib/krb5/krb5_err.c:232
msgid "Requesting ticket can't get forwardable tickets"
msgstr ""
#. 222
#: ../lib/krb5/krb5_err.c:233
msgid "Bad principal name while trying to forward credentials"
msgstr ""
#. 223
#: ../lib/krb5/krb5_err.c:234
msgid "Looping detected inside krb5_get_in_tkt"
msgstr ""
#. 224
#: ../lib/krb5/krb5_err.c:235
msgid "Configuration file does not specify default realm"
msgstr ""
#. 225
#: ../lib/krb5/krb5_err.c:236
msgid "Bad SAM flags in obtain_sam_padata"
msgstr ""
#. 226
#: ../lib/krb5/krb5_err.c:237
msgid "Invalid encryption type in SAM challenge"
msgstr ""
#. 227
#: ../lib/krb5/krb5_err.c:238
msgid "Missing checksum in SAM challenge"
msgstr ""
#. 228
#: ../lib/krb5/krb5_err.c:239
msgid "Bad checksum in SAM challenge"
msgstr ""
#. 229
#. 230
#. 231
#. 232
#. 233
#. 234
#. 235
#. 236
#. 237
#. 238
#: ../lib/krb5/krb5_err.c:249
msgid "Program called an obsolete, deleted function"
msgstr ""
#. 239
#. 240
#. 241
#. 242
#. 243
#. 244
#. 245
#: ../lib/krb5/krb5_err.c:256
msgid "Invalid key generation parameters from KDC"
msgstr ""
#. 246
#: ../lib/krb5/krb5_err.c:257
msgid "Service not available"
msgstr ""
#. 247
#: ../lib/krb5/krb5_err.c:258
msgid "Credential cache function not supported"
msgstr ""
#. 248
#: ../lib/krb5/krb5_err.c:259
msgid "Invalid format of Kerberos lifetime or clock skew string"
msgstr ""
#. 249
#: ../lib/krb5/krb5_err.c:260
msgid "Supplied data not handled by this plugin"
msgstr ""
#. 250
#: ../lib/krb5/krb5_err.c:261
msgid "Plugin does not support the operaton"
msgstr ""

View File

@@ -0,0 +1,256 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/krb5/heim_err.c:11
msgid "Error parsing log destination"
msgstr ""
#. 001
#: ../lib/krb5/heim_err.c:12
msgid "Failed to convert v4 principal"
msgstr ""
#. 002
#: ../lib/krb5/heim_err.c:13
msgid "Salt type is not supported by enctype"
msgstr ""
#. 003
#: ../lib/krb5/heim_err.c:14
msgid "Host not found"
msgstr ""
#. 004
#: ../lib/krb5/heim_err.c:15
msgid "Operation not supported"
msgstr ""
#. 005
#: ../lib/krb5/heim_err.c:16
msgid "End of file"
msgstr ""
#. 006
#: ../lib/krb5/heim_err.c:17
msgid "Failed to get the master key"
msgstr ""
#. 007
#: ../lib/krb5/heim_err.c:18
msgid "Unacceptable service used"
msgstr ""
#. 008
#. 009
#. 010
#. 011
#. 012
#. 013
#. 014
#. 015
#. 016
#. 017
#. 018
#. 019
#. 020
#. 021
#. 022
#. 023
#. 024
#. 025
#. 026
#. 027
#. 028
#. 029
#. 030
#. 031
#. 032
#. 033
#. 034
#. 035
#. 036
#. 037
#. 038
#. 039
#. 040
#. 041
#. 042
#. 043
#. 044
#. 045
#. 046
#. 047
#. 048
#. 049
#. 050
#. 051
#. 052
#. 053
#. 054
#. 055
#. 056
#. 057
#. 058
#. 059
#. 060
#. 061
#. 062
#. 063
#. 064
#: ../lib/krb5/heim_err.c:75
msgid "Certificate missing"
msgstr ""
#. 065
#: ../lib/krb5/heim_err.c:76
msgid "Private key missing"
msgstr ""
#. 066
#: ../lib/krb5/heim_err.c:77
msgid "No valid certificate authority"
msgstr ""
#. 067
#: ../lib/krb5/heim_err.c:78
msgid "Certificate invalid"
msgstr ""
#. 068
#: ../lib/krb5/heim_err.c:79
msgid "Private key invalid"
msgstr ""
#. 069
#. 070
#. 071
#. 072
#. 073
#. 074
#. 075
#. 076
#. 077
#. 078
#. 079
#. 080
#. 081
#. 082
#. 083
#. 084
#. 085
#. 086
#. 087
#. 088
#. 089
#. 090
#. 091
#. 092
#. 093
#. 094
#. 095
#. 096
#. 097
#. 098
#. 099
#. 100
#. 101
#. 102
#. 103
#. 104
#. 105
#. 106
#. 107
#. 108
#. 109
#. 110
#. 111
#. 112
#. 113
#. 114
#. 115
#. 116
#. 117
#. 118
#. 119
#. 120
#. 121
#. 122
#. 123
#. 124
#. 125
#. 126
#. 127
#. 128
#: ../lib/krb5/heim_err.c:139
msgid "unknown error from getaddrinfo"
msgstr ""
#. 129
#: ../lib/krb5/heim_err.c:140
msgid "address family for nodename not supported"
msgstr ""
#. 130
#: ../lib/krb5/heim_err.c:141
msgid "temporary failure in name resolution"
msgstr ""
#. 131
#: ../lib/krb5/heim_err.c:142
msgid "invalid value for ai_flags"
msgstr ""
#. 132
#: ../lib/krb5/heim_err.c:143
msgid "non-recoverable failure in name resolution"
msgstr ""
#. 133
#: ../lib/krb5/heim_err.c:144
msgid "ai_family not supported"
msgstr ""
#. 134
#: ../lib/krb5/heim_err.c:145
msgid "memory allocation failure"
msgstr ""
#. 135
#: ../lib/krb5/heim_err.c:146
msgid "no address associated with nodename"
msgstr ""
#. 136
#: ../lib/krb5/heim_err.c:147
msgid "nodename nor servname provided, or not known"
msgstr ""
#. 137
#: ../lib/krb5/heim_err.c:148
msgid "servname not supported for ai_socktype"
msgstr ""
#. 138
#: ../lib/krb5/heim_err.c:149
msgid "ai_socktype not supported"
msgstr ""
#. 139
#: ../lib/krb5/heim_err.c:150
msgid "system error returned in errno"
msgstr ""

View File

@@ -0,0 +1,71 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/wind/wind_err.c:11
msgid "No error"
msgstr ""
#. 001
#: ../lib/wind/wind_err.c:12
msgid "No such profile"
msgstr ""
#. 002
#: ../lib/wind/wind_err.c:13
msgid "Buffer overrun"
msgstr ""
#. 003
#: ../lib/wind/wind_err.c:14
msgid "Buffer underrun"
msgstr ""
#. 004
#: ../lib/wind/wind_err.c:15
msgid "Lenght not mod2"
msgstr ""
#. 005
#: ../lib/wind/wind_err.c:16
msgid "Lenght not mod4"
msgstr ""
#. 006
#: ../lib/wind/wind_err.c:17
msgid "Invalid UTF-8 combination in string"
msgstr ""
#. 007
#: ../lib/wind/wind_err.c:18
msgid "Invalid UTF-16 combination in string"
msgstr ""
#. 008
#: ../lib/wind/wind_err.c:19
msgid "Invalid UTF-32 combination in string"
msgstr ""
#. 009
#: ../lib/wind/wind_err.c:20
msgid "No byte order mark (BOM) in string"
msgstr ""
#. 010
#: ../lib/wind/wind_err.c:21
msgid "Code can't be represented as UTF-16"
msgstr ""

View File

@@ -0,0 +1,91 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/asn1/asn1_err.c:11
msgid "ASN.1 failed call to system time library"
msgstr ""
#. 001
#: ../lib/asn1/asn1_err.c:12
msgid "ASN.1 structure is missing a required field"
msgstr ""
#. 002
#: ../lib/asn1/asn1_err.c:13
msgid "ASN.1 unexpected field number"
msgstr ""
#. 003
#: ../lib/asn1/asn1_err.c:14
msgid "ASN.1 type numbers are inconsistent"
msgstr ""
#. 004
#: ../lib/asn1/asn1_err.c:15
msgid "ASN.1 value too large"
msgstr ""
#. 005
#: ../lib/asn1/asn1_err.c:16
msgid "ASN.1 encoding ended unexpectedly"
msgstr ""
#. 006
#: ../lib/asn1/asn1_err.c:17
msgid "ASN.1 identifier doesn't match expected value"
msgstr ""
#. 007
#: ../lib/asn1/asn1_err.c:18
msgid "ASN.1 length doesn't match expected value"
msgstr ""
#. 008
#: ../lib/asn1/asn1_err.c:19
msgid "ASN.1 badly-formatted encoding"
msgstr ""
#. 009
#: ../lib/asn1/asn1_err.c:20
msgid "ASN.1 parse error"
msgstr ""
#. 010
#: ../lib/asn1/asn1_err.c:21
msgid "ASN.1 extra data past end of end structure"
msgstr ""
#. 011
#: ../lib/asn1/asn1_err.c:22
msgid "ASN.1 invalid character in string"
msgstr ""
#. 012
#: ../lib/asn1/asn1_err.c:23
msgid "ASN.1 too few elements"
msgstr ""
#. 013
#: ../lib/asn1/asn1_err.c:24
msgid "ASN.1 too many elements"
msgstr ""
#. 014
#: ../lib/asn1/asn1_err.c:25
msgid "ASN.1 wrong number of elements"
msgstr ""

View File

@@ -0,0 +1,225 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/gssapi/gkrb5_err.c:11
msgid "No @ in SERVICE-NAME name string"
msgstr ""
#. 001
#: ../lib/gssapi/gkrb5_err.c:12
msgid "STRING-UID-NAME contains nondigits"
msgstr ""
#. 002
#: ../lib/gssapi/gkrb5_err.c:13
msgid "UID does not resolve to username"
msgstr ""
#. 003
#: ../lib/gssapi/gkrb5_err.c:14
msgid "Validation error"
msgstr ""
#. 004
#: ../lib/gssapi/gkrb5_err.c:15
msgid "Couldn't allocate gss_buffer_t data"
msgstr ""
#. 005
#: ../lib/gssapi/gkrb5_err.c:16
msgid "Message context invalid"
msgstr ""
#. 006
#: ../lib/gssapi/gkrb5_err.c:17
msgid "Buffer is the wrong size"
msgstr ""
#. 007
#: ../lib/gssapi/gkrb5_err.c:18
msgid "Credential usage type is unknown"
msgstr ""
#. 008
#: ../lib/gssapi/gkrb5_err.c:19
msgid "Unknown quality of protection specified"
msgstr ""
#. 009
#. 010
#. 011
#. 012
#. 013
#. 014
#. 015
#. 016
#. 017
#. 018
#. 019
#. 020
#. 021
#. 022
#. 023
#. 024
#. 025
#. 026
#. 027
#. 028
#. 029
#. 030
#. 031
#. 032
#. 033
#. 034
#. 035
#. 036
#. 037
#. 038
#. 039
#. 040
#. 041
#. 042
#. 043
#. 044
#. 045
#. 046
#. 047
#. 048
#. 049
#. 050
#. 051
#. 052
#. 053
#. 054
#. 055
#. 056
#. 057
#. 058
#. 059
#. 060
#. 061
#. 062
#. 063
#. 064
#. 065
#. 066
#. 067
#. 068
#. 069
#. 070
#. 071
#. 072
#. 073
#. 074
#. 075
#. 076
#. 077
#. 078
#. 079
#. 080
#. 081
#. 082
#. 083
#. 084
#. 085
#. 086
#. 087
#. 088
#. 089
#. 090
#. 091
#. 092
#. 093
#. 094
#. 095
#. 096
#. 097
#. 098
#. 099
#. 100
#. 101
#. 102
#. 103
#. 104
#. 105
#. 106
#. 107
#. 108
#. 109
#. 110
#. 111
#. 112
#. 113
#. 114
#. 115
#. 116
#. 117
#. 118
#. 119
#. 120
#. 121
#. 122
#. 123
#. 124
#. 125
#. 126
#. 127
#. 128
#: ../lib/gssapi/gkrb5_err.c:139
msgid "Principal in credential cache does not match desired name"
msgstr ""
#. 129
#: ../lib/gssapi/gkrb5_err.c:140
msgid "No principal in keytab matches desired name"
msgstr ""
#. 130
#: ../lib/gssapi/gkrb5_err.c:141
msgid "Credential cache has no TGT"
msgstr ""
#. 131
#: ../lib/gssapi/gkrb5_err.c:142
msgid "Authenticator has no subkey"
msgstr ""
#. 132
#: ../lib/gssapi/gkrb5_err.c:143
msgid "Context is already fully established"
msgstr ""
#. 133
#: ../lib/gssapi/gkrb5_err.c:144
msgid "Unknown signature type in token"
msgstr ""
#. 134
#: ../lib/gssapi/gkrb5_err.c:145
msgid "Invalid field length in token"
msgstr ""
#. 135
#: ../lib/gssapi/gkrb5_err.c:146
msgid "Attempt to use incomplete security context"
msgstr ""
#. 136
#: ../lib/gssapi/gkrb5_err.c:147
msgid "Input too long"
msgstr ""

View File

@@ -0,0 +1,82 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#. 001
#: ../lib/hdb/hdb_err.c:12
msgid "Database store error"
msgstr ""
#. 002
#: ../lib/hdb/hdb_err.c:13
msgid "Database read error"
msgstr ""
#. 003
#: ../lib/hdb/hdb_err.c:14
msgid "No such entry in the database"
msgstr ""
#. 004
#: ../lib/hdb/hdb_err.c:15
msgid "Database is locked or in use--try again later"
msgstr ""
#. 005
#: ../lib/hdb/hdb_err.c:16
msgid "Database was modified during read"
msgstr ""
#. 006
#: ../lib/hdb/hdb_err.c:17
msgid "Attempt to lock database twice"
msgstr ""
#. 007
#: ../lib/hdb/hdb_err.c:18
msgid "Attempt to unlock database when not locked"
msgstr ""
#. 008
#: ../lib/hdb/hdb_err.c:19
msgid "Invalid kdb lock mode"
msgstr ""
#. 009
#: ../lib/hdb/hdb_err.c:20
msgid "Insufficient access to lock database"
msgstr ""
#. 010
#: ../lib/hdb/hdb_err.c:21
msgid "Entry already exists in database"
msgstr ""
#. 011
#: ../lib/hdb/hdb_err.c:22
msgid "Wrong database version"
msgstr ""
#. 012
#: ../lib/hdb/hdb_err.c:23
msgid "No correct master key"
msgstr ""
#. 013
#: ../lib/hdb/hdb_err.c:24
msgid "Entry contains unknown mandatory extension"
msgstr ""

View File

@@ -0,0 +1,274 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/krb5/krb_err.c:11
msgid "Kerberos 4 successful"
msgstr ""
#. 001
#: ../lib/krb5/krb_err.c:12
msgid "Kerberos 4 principal expired"
msgstr ""
#. 002
#: ../lib/krb5/krb_err.c:13
msgid "Kerberos 4 service expired"
msgstr ""
#. 003
#: ../lib/krb5/krb_err.c:14
msgid "Kerberos 4 auth expired"
msgstr ""
#. 004
#. 005
#. 006
#: ../lib/krb5/krb_err.c:15 ../lib/krb5/krb_err.c:16 ../lib/krb5/krb_err.c:17
msgid "Incorrect Kerberos 4 master key version"
msgstr ""
#. 007
#: ../lib/krb5/krb_err.c:18
msgid "Kerberos 4 byte order unknown"
msgstr ""
#. 008
#: ../lib/krb5/krb_err.c:19
msgid "Kerberos 4 principal unknown"
msgstr ""
#. 009
#: ../lib/krb5/krb_err.c:20
msgid "Kerberos 4 principal not unique"
msgstr ""
#. 010
#: ../lib/krb5/krb_err.c:21
msgid "Kerberos 4 principal has null key"
msgstr ""
#. 011
#. 012
#. 013
#. 014
#. 015
#. 016
#. 017
#. 018
#. 019
#. 020
#: ../lib/krb5/krb_err.c:31
msgid "Generic error from KDC (Kerberos 4)"
msgstr ""
#. 021
#: ../lib/krb5/krb_err.c:32
msgid "Can't read Kerberos 4 ticket file"
msgstr ""
#. 022
#: ../lib/krb5/krb_err.c:33
msgid "Can't find Kerberos 4 ticket or TGT"
msgstr ""
#. 023
#. 024
#. 025
#. 026
#: ../lib/krb5/krb_err.c:37
msgid "Kerberos 4 TGT Expired"
msgstr ""
#. 027
#. 028
#. 029
#. 030
#. 031
#: ../lib/krb5/krb_err.c:42
msgid "Kerberos 4: Can't decode authenticator"
msgstr ""
#. 032
#: ../lib/krb5/krb_err.c:43
msgid "Kerberos 4 ticket expired"
msgstr ""
#. 033
#: ../lib/krb5/krb_err.c:44
msgid "Kerberos 4 ticket not yet valid"
msgstr ""
#. 034
#: ../lib/krb5/krb_err.c:45
msgid "Kerberos 4: Repeated request"
msgstr ""
#. 035
#: ../lib/krb5/krb_err.c:46
msgid "The Kerberos 4 ticket isn't for us"
msgstr ""
#. 036
#: ../lib/krb5/krb_err.c:47
msgid "Kerberos 4 request inconsistent"
msgstr ""
#. 037
#: ../lib/krb5/krb_err.c:48
msgid "Kerberos 4: delta_t too big"
msgstr ""
#. 038
#: ../lib/krb5/krb_err.c:49
msgid "Kerberos 4: incorrect net address"
msgstr ""
#. 039
#: ../lib/krb5/krb_err.c:50
msgid "Kerberos protocol not version 4"
msgstr ""
#. 040
#: ../lib/krb5/krb_err.c:51
msgid "Kerberos 4: invalid msg type"
msgstr ""
#. 041
#: ../lib/krb5/krb_err.c:52
msgid "Kerberos 4: message stream modified"
msgstr ""
#. 042
#: ../lib/krb5/krb_err.c:53
msgid "Kerberos 4: message out of order"
msgstr ""
#. 043
#: ../lib/krb5/krb_err.c:54
msgid "Kerberos 4: unauthorized request"
msgstr ""
#. 044
#. 045
#. 046
#. 047
#. 048
#. 049
#. 050
#. 051
#: ../lib/krb5/krb_err.c:62
msgid "Kerberos 4: current PW is null"
msgstr ""
#. 052
#: ../lib/krb5/krb_err.c:63
msgid "Kerberos 4: Incorrect current password"
msgstr ""
#. 053
#: ../lib/krb5/krb_err.c:64
msgid "Kerberos 4 protocol error"
msgstr ""
#. 054
#: ../lib/krb5/krb_err.c:65
msgid "Error returned by KDC (Kerberos 4)"
msgstr ""
#. 055
#: ../lib/krb5/krb_err.c:66
msgid "Null Kerberos 4 ticket returned by KDC"
msgstr ""
#. 056
#: ../lib/krb5/krb_err.c:67
msgid "Kerberos 4: Retry count exceeded"
msgstr ""
#. 057
#: ../lib/krb5/krb_err.c:68
msgid "Kerberos 4: Can't send request"
msgstr ""
#. 058
#. 059
#. 060
#. 061
#: ../lib/krb5/krb_err.c:72
msgid "Kerberos 4: not all tickets returned"
msgstr ""
#. 062
#: ../lib/krb5/krb_err.c:73
msgid "Kerberos 4: incorrect password"
msgstr ""
#. 063
#: ../lib/krb5/krb_err.c:74
msgid "Kerberos 4: Protocol Error"
msgstr ""
#. 064
#. 065
#. 066
#. 067
#. 068
#. 069
#. 070
#: ../lib/krb5/krb_err.c:81
msgid "Other error in Kerberos 4"
msgstr ""
#. 071
#: ../lib/krb5/krb_err.c:82
msgid "Don't have Kerberos 4 ticket-granting ticket"
msgstr ""
#. 072
#. 073
#. 074
#. 075
#. 076
#: ../lib/krb5/krb_err.c:87
msgid "No Kerberos 4 ticket file found"
msgstr ""
#. 077
#: ../lib/krb5/krb_err.c:88
msgid "Couldn't access Kerberos 4 ticket file"
msgstr ""
#. 078
#: ../lib/krb5/krb_err.c:89
msgid "Couldn't lock Kerberos 4 ticket file"
msgstr ""
#. 079
#: ../lib/krb5/krb_err.c:90
msgid "Bad Kerberos 4 ticket file format"
msgstr ""
#. 080
#: ../lib/krb5/krb_err.c:91
msgid "Kerberos 4: tf_init not called first"
msgstr ""
#. 081
#: ../lib/krb5/krb_err.c:92
msgid "Bad Kerberos 4 name format"
msgstr ""

View File

@@ -0,0 +1,262 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/kadm5/kadm5_err.c:11
msgid "Operation failed for unspecified reason"
msgstr ""
#. 001
#: ../lib/kadm5/kadm5_err.c:12
msgid "Operation requires `get' privilege"
msgstr ""
#. 002
#: ../lib/kadm5/kadm5_err.c:13
msgid "Operation requires `add' privilege"
msgstr ""
#. 003
#: ../lib/kadm5/kadm5_err.c:14
msgid "Operation requires `modify' privilege"
msgstr ""
#. 004
#: ../lib/kadm5/kadm5_err.c:15
msgid "Operation requires `delete' privilege"
msgstr ""
#. 005
#: ../lib/kadm5/kadm5_err.c:16
msgid "Insufficient authorization for operation"
msgstr ""
#. 006
#: ../lib/kadm5/kadm5_err.c:17
msgid "Database inconsistency detected"
msgstr ""
#. 007
#: ../lib/kadm5/kadm5_err.c:18
msgid "Principal or policy already exists"
msgstr ""
#. 008
#: ../lib/kadm5/kadm5_err.c:19
msgid "Communication failure with server"
msgstr ""
#. 009
#: ../lib/kadm5/kadm5_err.c:20
msgid "No administration server found for realm"
msgstr ""
#. 010
#: ../lib/kadm5/kadm5_err.c:21
msgid "Password history principal key version mismatch"
msgstr ""
#. 011
#: ../lib/kadm5/kadm5_err.c:22
msgid "Connection to server not initialized"
msgstr ""
#. 012
#: ../lib/kadm5/kadm5_err.c:23
msgid "Principal does not exist"
msgstr ""
#. 013
#: ../lib/kadm5/kadm5_err.c:24
msgid "Policy does not exist"
msgstr ""
#. 014
#: ../lib/kadm5/kadm5_err.c:25
msgid "Invalid field mask for operation"
msgstr ""
#. 015
#: ../lib/kadm5/kadm5_err.c:26
msgid "Invalid number of character classes"
msgstr ""
#. 016
#: ../lib/kadm5/kadm5_err.c:27
msgid "Invalid password length"
msgstr ""
#. 017
#: ../lib/kadm5/kadm5_err.c:28
msgid "Invalid policy name"
msgstr ""
#. 018
#: ../lib/kadm5/kadm5_err.c:29
msgid "Invalid principal name."
msgstr ""
#. 019
#: ../lib/kadm5/kadm5_err.c:30
msgid "Invalid auxillary attributes"
msgstr ""
#. 020
#: ../lib/kadm5/kadm5_err.c:31
msgid "Invalid password history count"
msgstr ""
#. 021
#: ../lib/kadm5/kadm5_err.c:32
msgid "Password minimum life is greater than password maximum life"
msgstr ""
#. 022
#: ../lib/kadm5/kadm5_err.c:33
msgid "Password is too short"
msgstr ""
#. 023
#: ../lib/kadm5/kadm5_err.c:34
msgid "Password does not contain enough character classes"
msgstr ""
#. 024
#: ../lib/kadm5/kadm5_err.c:35
msgid "Password is in the password dictionary"
msgstr ""
#. 025
#: ../lib/kadm5/kadm5_err.c:36
msgid "Can't reuse password"
msgstr ""
#. 026
#: ../lib/kadm5/kadm5_err.c:37
msgid "Current password's minimum life has not expired"
msgstr ""
#. 027
#: ../lib/kadm5/kadm5_err.c:38
msgid "Policy is in use"
msgstr ""
#. 028
#: ../lib/kadm5/kadm5_err.c:39
msgid "Connection to server already initialized"
msgstr ""
#. 029
#: ../lib/kadm5/kadm5_err.c:40
msgid "Incorrect password"
msgstr ""
#. 030
#: ../lib/kadm5/kadm5_err.c:41
msgid "Can't change protected principal"
msgstr ""
#. 031
#: ../lib/kadm5/kadm5_err.c:42
msgid "Programmer error! Bad Admin server handle"
msgstr ""
#. 032
#: ../lib/kadm5/kadm5_err.c:43
msgid "Programmer error! Bad API structure version"
msgstr ""
#. 033
#: ../lib/kadm5/kadm5_err.c:44
msgid "API structure version specified by application is no longer supported"
msgstr ""
#. 034
#: ../lib/kadm5/kadm5_err.c:45
msgid "API structure version specified by application is unknown to libraries"
msgstr ""
#. 035
#: ../lib/kadm5/kadm5_err.c:46
msgid "Programmer error! Bad API version"
msgstr ""
#. 036
#: ../lib/kadm5/kadm5_err.c:47
msgid ""
"API version specified by application is no longer supported by libraries"
msgstr ""
#. 037
#: ../lib/kadm5/kadm5_err.c:48
msgid "API version specified by application is no longer supported by server"
msgstr ""
#. 038
#: ../lib/kadm5/kadm5_err.c:49
msgid "API version specified by application is unknown to libraries"
msgstr ""
#. 039
#: ../lib/kadm5/kadm5_err.c:50
msgid "API version specified by application is unknown to server"
msgstr ""
#. 040
#: ../lib/kadm5/kadm5_err.c:51
msgid "Database error! Required principal missing"
msgstr ""
#. 041
#: ../lib/kadm5/kadm5_err.c:52
msgid "The salt type of the specified principal does not support renaming"
msgstr ""
#. 042
#: ../lib/kadm5/kadm5_err.c:53
msgid "Invalid configuration parameter for remote KADM5 client"
msgstr ""
#. 043
#: ../lib/kadm5/kadm5_err.c:54
msgid "Invalid configuration parameter for local KADM5 client."
msgstr ""
#. 044
#: ../lib/kadm5/kadm5_err.c:55
msgid "Operation requires `list' privilege"
msgstr ""
#. 045
#: ../lib/kadm5/kadm5_err.c:56
msgid "Operation requires `change-password' privilege"
msgstr ""
#. 046
#: ../lib/kadm5/kadm5_err.c:57
msgid "Invalid tagged data list element type"
msgstr ""
#. 047
#: ../lib/kadm5/kadm5_err.c:58
msgid "Required parameters in kdc.conf missing"
msgstr ""
#. 048
#: ../lib/kadm5/kadm5_err.c:59
msgid "Bad krb5 admin server hostname"
msgstr ""

View File

@@ -0,0 +1,419 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#. 000
#: ../lib/hx509/hx509_err.c:11
msgid "ASN.1 failed call to system time library"
msgstr ""
#. 001
#: ../lib/hx509/hx509_err.c:12
msgid "Extension not found"
msgstr ""
#. 002
#: ../lib/hx509/hx509_err.c:13
msgid "Certification path not found"
msgstr ""
#. 003
#: ../lib/hx509/hx509_err.c:14
msgid "Parent certificate is not a CA"
msgstr ""
#. 004
#: ../lib/hx509/hx509_err.c:15
msgid "CA path too deep"
msgstr ""
#. 005
#: ../lib/hx509/hx509_err.c:16
msgid "Signature algorithm not supported"
msgstr ""
#. 006
#: ../lib/hx509/hx509_err.c:17
msgid "Signature algorithm doesn't match certificate key"
msgstr ""
#. 007
#: ../lib/hx509/hx509_err.c:18
msgid "Certificate used before it became valid"
msgstr ""
#. 008
#: ../lib/hx509/hx509_err.c:19
msgid "Certificate used after it became invalid"
msgstr ""
#. 009
#: ../lib/hx509/hx509_err.c:20
msgid "Private key required for the operation is missing"
msgstr ""
#. 010
#: ../lib/hx509/hx509_err.c:21
msgid "Algorithm not supported"
msgstr ""
#. 011
#: ../lib/hx509/hx509_err.c:22
msgid "Issuer couldn't be found"
msgstr ""
#. 012
#: ../lib/hx509/hx509_err.c:23
msgid "Error verifing constraints"
msgstr ""
#. 013
#: ../lib/hx509/hx509_err.c:24
msgid "Number too large"
msgstr ""
#. 014
#: ../lib/hx509/hx509_err.c:25
msgid "Error while verifing name constraints"
msgstr ""
#. 015
#: ../lib/hx509/hx509_err.c:26
msgid "Path is too long, failed to find valid anchor"
msgstr ""
#. 016
#: ../lib/hx509/hx509_err.c:27
msgid "Required keyusage for this certificate is missing"
msgstr ""
#. 017
#: ../lib/hx509/hx509_err.c:28
msgid "Certificate not found"
msgstr ""
#. 018
#: ../lib/hx509/hx509_err.c:29
msgid "Unknown lock command"
msgstr ""
#. 019
#: ../lib/hx509/hx509_err.c:30
msgid "Parent certificate is a CA"
msgstr ""
#. 020
#: ../lib/hx509/hx509_err.c:31
msgid "Extra data was found after the structure"
msgstr ""
#. 021
#: ../lib/hx509/hx509_err.c:32
msgid "Proxy certificate is invalid"
msgstr ""
#. 022
#: ../lib/hx509/hx509_err.c:33
msgid "Proxy certificate name is wrong"
msgstr ""
#. 023
#: ../lib/hx509/hx509_err.c:34
msgid "Name is malformated"
msgstr ""
#. 024
#: ../lib/hx509/hx509_err.c:35
msgid "Certificate is malformated"
msgstr ""
#. 025
#: ../lib/hx509/hx509_err.c:36
msgid "Certificate is missing a required EKU"
msgstr ""
#. 026
#: ../lib/hx509/hx509_err.c:37
msgid "Proxy certificate not canonicalize"
msgstr ""
#. 027
#. 028
#. 029
#. 030
#. 031
#. 032
#: ../lib/hx509/hx509_err.c:43
msgid "Failed to create signature"
msgstr ""
#. 033
#: ../lib/hx509/hx509_err.c:44
msgid "Missing signer data"
msgstr ""
#. 034
#: ../lib/hx509/hx509_err.c:45
msgid "Couldn't find signers certificate"
msgstr ""
#. 035
#: ../lib/hx509/hx509_err.c:46
msgid "No data to perform the operation on"
msgstr ""
#. 036
#: ../lib/hx509/hx509_err.c:47
msgid "Data in the message is invalid"
msgstr ""
#. 037
#: ../lib/hx509/hx509_err.c:48
msgid "Padding in the message invalid"
msgstr ""
#. 038
#: ../lib/hx509/hx509_err.c:49
msgid "Couldn't find recipient certificate"
msgstr ""
#. 039
#: ../lib/hx509/hx509_err.c:50
msgid "Mismatch bewteen signed type and unsigned type"
msgstr ""
#. 040
#. 041
#. 042
#. 043
#. 044
#. 045
#. 046
#. 047
#. 048
#. 049
#. 050
#. 051
#. 052
#. 053
#. 054
#. 055
#. 056
#. 057
#. 058
#. 059
#. 060
#. 061
#. 062
#. 063
#. 064
#: ../lib/hx509/hx509_err.c:75
msgid "Internal error in the crypto engine"
msgstr ""
#. 065
#: ../lib/hx509/hx509_err.c:76
msgid "External error in the crypto engine"
msgstr ""
#. 066
#: ../lib/hx509/hx509_err.c:77
msgid "Signature missing for data"
msgstr ""
#. 067
#: ../lib/hx509/hx509_err.c:78
msgid "Signature is not valid"
msgstr ""
#. 068
#: ../lib/hx509/hx509_err.c:79
msgid "Sigature doesn't provide confidentiality"
msgstr ""
#. 069
#: ../lib/hx509/hx509_err.c:80
msgid "Invalid format on signature"
msgstr ""
#. 070
#: ../lib/hx509/hx509_err.c:81
msgid "Mismatch bewteen oids"
msgstr ""
#. 071
#: ../lib/hx509/hx509_err.c:82
msgid "No prompter function defined"
msgstr ""
#. 072
#: ../lib/hx509/hx509_err.c:83
msgid "Signature require signer, but non available"
msgstr ""
#. 073
#. 074
#: ../lib/hx509/hx509_err.c:84 ../lib/hx509/hx509_err.c:85
msgid "RSA public encyption failed"
msgstr ""
#. 075
#. 076
#: ../lib/hx509/hx509_err.c:86 ../lib/hx509/hx509_err.c:87
msgid "RSA private decryption failed"
msgstr ""
#. 077
#. 078
#. 079
#. 080
#. 081
#. 082
#. 083
#. 084
#. 085
#. 086
#. 087
#. 088
#. 089
#. 090
#. 091
#. 092
#. 093
#. 094
#. 095
#. 096
#: ../lib/hx509/hx509_err.c:107
msgid "CRL used before it became valid"
msgstr ""
#. 097
#: ../lib/hx509/hx509_err.c:108
msgid "CRL used after it became invalid"
msgstr ""
#. 098
#: ../lib/hx509/hx509_err.c:109
msgid "CRL have invalid format"
msgstr ""
#. 099
#: ../lib/hx509/hx509_err.c:110
msgid "Certificate is revoked"
msgstr ""
#. 100
#: ../lib/hx509/hx509_err.c:111
msgid "No revoke status found for certificates"
msgstr ""
#. 101
#: ../lib/hx509/hx509_err.c:112
msgid "Unknown extension"
msgstr ""
#. 102
#: ../lib/hx509/hx509_err.c:113
msgid "Got wrong CRL/OCSP data from server"
msgstr ""
#. 103
#: ../lib/hx509/hx509_err.c:114
msgid "Doesn't have same parent as other certificates"
msgstr ""
#. 104
#: ../lib/hx509/hx509_err.c:115
msgid "Certificates not in OCSP reply"
msgstr ""
#. 105
#. 106
#. 107
#. 108
#: ../lib/hx509/hx509_err.c:119
msgid "No local key attribute"
msgstr ""
#. 109
#: ../lib/hx509/hx509_err.c:120
msgid "Failed to parse key"
msgstr ""
#. 110
#: ../lib/hx509/hx509_err.c:121
msgid "Unsupported operation"
msgstr ""
#. 111
#: ../lib/hx509/hx509_err.c:122
msgid "Unimplemented operation"
msgstr ""
#. 112
#: ../lib/hx509/hx509_err.c:123
msgid "Failed to parse name"
msgstr ""
#. 113
#. 114
#. 115
#. 116
#. 117
#. 118
#. 119
#. 120
#. 121
#. 122
#. 123
#. 124
#. 125
#. 126
#. 127
#. 128
#: ../lib/hx509/hx509_err.c:139
msgid "No smartcard reader/device found"
msgstr ""
#. 129
#: ../lib/hx509/hx509_err.c:140
msgid "No smartcard in reader"
msgstr ""
#. 130
#: ../lib/hx509/hx509_err.c:141
msgid "No supported mech(s)"
msgstr ""
#. 131
#: ../lib/hx509/hx509_err.c:142
msgid "Token or slot failed in inconsistent way"
msgstr ""
#. 132
#: ../lib/hx509/hx509_err.c:143
msgid "Failed to open session to slot"
msgstr ""
#. 133
#: ../lib/hx509/hx509_err.c:144
msgid "Failed to login to slot"
msgstr ""
#. 134
#: ../lib/hx509/hx509_err.c:145
msgid "Failed to load PKCS module"
msgstr ""

View File

@@ -0,0 +1,305 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 14:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: lib/krb5/acache.c:119
#, c-format
msgid "Failed to load API cache module %s"
msgstr ""
#: lib/krb5/acache.c:128
#, c-format
msgid "Failed to find cc_initializein %s: %s"
msgstr ""
#: lib/krb5/acache.c:138
msgid "no support for shared object"
msgstr ""
#: lib/krb5/acache.c:263
#: lib/krb5/acache.c:981
#: lib/krb5/acl.c:87
#: lib/krb5/addr_families.c:1104
#: lib/krb5/addr_families.c:1130
#: lib/krb5/addr_families.c:1371
#: lib/krb5/addr_families.c:1414
#: lib/krb5/addr_families.c:1421
#: lib/krb5/auth_context.c:46
#: lib/krb5/auth_context.c:52
#: lib/krb5/auth_context.c:244
#: lib/krb5/auth_context.c:255
#: lib/krb5/auth_context.c:455
#: lib/krb5/build_auth.c:65
#: lib/krb5/build_auth.c:84
#: lib/krb5/build_auth.c:91
#: lib/krb5/build_auth.c:121
#: lib/krb5/cache.c:77
#: lib/krb5/cache.c:104
#: lib/krb5/cache.c:288
#: lib/krb5/cache.c:361
#: lib/krb5/cache.c:372
#: lib/krb5/cache.c:493
#: lib/krb5/cache.c:540
#: lib/krb5/cache.c:912
#: lib/krb5/cache.c:973
#: lib/krb5/context.c:71
#: lib/krb5/context.c:570
#: lib/krb5/context.c:612
#: lib/krb5/context.c:650
#: lib/krb5/context.c:803
#: lib/krb5/context.c:885
#: lib/krb5/convert_creds.c:100
#: lib/krb5/copy_host_realm.c:65
#: lib/krb5/copy_host_realm.c:74
#: lib/krb5/creds.c:160
#: lib/krb5/crypto.c:361
#: lib/krb5/crypto.c:443
#: lib/krb5/crypto.c:457
#: lib/krb5/crypto.c:505
#: lib/krb5/crypto.c:583
#: lib/krb5/crypto.c:597
#: lib/krb5/crypto.c:620
#: lib/krb5/crypto.c:668
#: lib/krb5/crypto.c:674
#: lib/krb5/crypto.c:934
#: lib/krb5/crypto.c:1190
#: lib/krb5/crypto.c:1267
#: lib/krb5/crypto.c:1300
#: lib/krb5/crypto.c:1551
#: lib/krb5/crypto.c:1738
#: lib/krb5/crypto.c:2641
#: lib/krb5/crypto.c:2810
#: lib/krb5/crypto.c:2874
#: lib/krb5/crypto.c:2936
#: lib/krb5/crypto.c:2988
#: lib/krb5/crypto.c:3030
#: lib/krb5/crypto.c:3059
#: lib/krb5/crypto.c:3092
#: lib/krb5/crypto.c:3121
#: lib/krb5/crypto.c:3136
#: lib/krb5/crypto.c:3818
#: lib/krb5/crypto.c:3824
#: lib/krb5/crypto.c:3841
#: lib/krb5/crypto.c:3849
#: lib/krb5/crypto.c:3855
#: lib/krb5/crypto.c:3951
#: lib/krb5/crypto.c:3971
#: lib/krb5/crypto.c:4154
#: lib/krb5/crypto.c:4166
#: lib/krb5/crypto.c:4172
#: lib/krb5/crypto.c:4345
#: lib/krb5/crypto.c:4511
#: lib/krb5/crypto.c:4616
#: lib/krb5/crypto.c:4640
#: lib/krb5/crypto.c:4691
#: lib/krb5/v4_glue.c:427
#: lib/krb5/v4_glue.c:484
#: lib/krb5/v4_glue.c:543
#: lib/krb5/v4_glue.c:599
#: lib/krb5/v4_glue.c:778
#: lib/krb5/v4_glue.c:851
msgid "malloc: out of memory"
msgstr ""
#: lib/krb5/acache.c:631
#: lib/krb5/acache.c:665
#: lib/krb5/acache.c:692
#: lib/krb5/acache.c:758
#: lib/krb5/acache.c:995
msgid "No API credential found"
msgstr ""
#: lib/krb5/acache.c:811
#, c-format
msgid "Can't find credential %s in cache"
msgstr ""
#: lib/krb5/acl.c:103
#, c-format
msgid "Unknown format specifier %c while parsing ACL"
msgstr ""
#: lib/krb5/acl.c:225
#: lib/krb5/acl.c:294
msgid "ACL did not match"
msgstr ""
#: lib/krb5/acl.c:264
#, c-format
msgid "open(%s): %s"
msgstr ""
#: lib/krb5/addr_families.c:206
#, c-format
msgid "IPv4 prefix too large (%ld)"
msgstr ""
#: lib/krb5/addr_families.c:400
#, c-format
msgid "IPv6 prefix too large (%ld)"
msgstr ""
#: lib/krb5/addr_families.c:406
msgid "IPv6 addr bad length"
msgstr ""
#: lib/krb5/addr_families.c:793
#: lib/krb5/addr_families.c:821
#: lib/krb5/addr_families.c:976
#: lib/krb5/addr_families.c:1010
#: lib/krb5/addr_families.c:1174
#: lib/krb5/addr_families.c:1183
#, c-format
msgid "Address family %d not supported"
msgstr ""
#: lib/krb5/addr_families.c:860
#, c-format
msgid "Address type %d not supported"
msgstr ""
#: lib/krb5/addr_families.c:868
#, c-format
msgid "Can't convert address type %d to sockaddr"
msgstr ""
#: lib/krb5/addr_families.c:1482
#, c-format
msgid "Address family %d doesn't support address mask operation"
msgstr ""
#: lib/krb5/cache.c:64
#, c-format
msgid "cache type %s already exists"
msgstr ""
#: lib/krb5/cache.c:173
#, c-format
msgid "unknown ccache type %s"
msgstr ""
#: lib/krb5/cache.c:965
#, c-format
msgid "Credential cache type %s doesn't support iterations over caches"
msgstr ""
#: lib/krb5/cache.c:1078
#, c-format
msgid "Principal %s not found in a credential cache"
msgstr ""
#: lib/krb5/cache.c:1111
msgid "Moving credentials between diffrent types not yet supported"
msgstr ""
#: lib/krb5/changepw.c:315
#, c-format
msgid "Message too large from %s"
msgstr ""
#: lib/krb5/changepw.c:665
#, c-format
msgid "Unable to reach any changepw server in realm %s"
msgstr ""
#: lib/krb5/convert_creds.c:136
#, c-format
msgid "converting credentials: %s"
msgstr ""
#: lib/krb5/crypto.c:3586
msgid "Checksum larger then input buffer"
msgstr ""
#: lib/krb5/v4_glue.c:151
#: lib/krb5/v4_glue.c:297
msgid "Failed getting the krb4 credentials cache name"
msgstr ""
#: lib/krb5/v4_glue.c:160
#, c-format
msgid "Failed opening krb4 credential cache %s: %s"
msgstr ""
#: lib/krb5/v4_glue.c:170
#, c-format
msgid "krb4 credential cache %s is not a file"
msgstr ""
#: lib/krb5/v4_glue.c:185
#, c-format
msgid "Failed to lock credentail cache %s"
msgstr ""
#: lib/krb5/v4_glue.c:197
#, c-format
msgid "Failed to truncate krb4 cc %s"
msgstr ""
#: lib/krb5/v4_glue.c:305
#, c-format
msgid "Failed removing the cache %s with error %s"
msgstr ""
#: lib/krb5/v4_glue.c:455
#: lib/krb5/v4_glue.c:515
#: lib/krb5/v4_glue.c:568
msgid "Failed to encode kerberos 4 ticket"
msgstr ""
#: lib/krb5/v4_glue.c:786
msgid "Failed reading v4 pvno"
msgstr ""
#: lib/krb5/v4_glue.c:792
msgid "Failed v4 pvno not 4"
msgstr ""
#: lib/krb5/v4_glue.c:798
msgid "Failed readin v4 type"
msgstr ""
#: lib/krb5/v4_glue.c:808
msgid "Not a valid v4 request type"
msgstr ""
#: lib/krb5/v4_glue.c:821
msgid "Failed reading v4 ticket"
msgstr ""
#: lib/krb5/v4_glue.c:837
msgid "Failed reading v4 authenticator"
msgstr ""
#: lib/krb5/v4_glue.c:872
msgid "v4 principal mismatch"
msgstr ""
#: lib/krb5/v4_glue.c:879
msgid "v4 bad address in ticket"
msgstr ""
#: lib/krb5/v4_glue.c:887
msgid "v4 clock skew"
msgstr ""
#: lib/krb5/v4_glue.c:898
msgid "v4 clock skew for expiration"
msgstr ""
#: lib/krb5/v4_glue.c:904
msgid "v4 ticket expired"
msgstr ""

BIN
po/heimdal_krb5/sv_SE.mo Normal file

Binary file not shown.

244
po/heimdal_krb5/sv_SE.po Normal file
View File

@@ -0,0 +1,244 @@
# Swedish translations for heimdal_krb package
# Svenska översättningar för paket heimdal_krb.
# This file is put in the public domain.
# Love Hornquist Astrand <>, 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: Heimdal 1.2.99\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-07 12:55+0100\n"
"PO-Revision-Date: 2008-09-07 13:12+0100\n"
"Last-Translator: Love Hornquist Astrand <>\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: lib/krb5/acache.c:119
#, c-format
msgid "Failed to load API cache module %s"
msgstr ""
#: lib/krb5/acache.c:128
#, c-format
msgid "Failed to find cc_initializein %s: %s"
msgstr ""
#: lib/krb5/acache.c:138
msgid "no support for shared object"
msgstr ""
#: lib/krb5/acache.c:263 lib/krb5/acache.c:981 lib/krb5/acl.c:87
#: lib/krb5/addr_families.c:1104 lib/krb5/addr_families.c:1130
#: lib/krb5/addr_families.c:1371 lib/krb5/addr_families.c:1414
#: lib/krb5/addr_families.c:1421 lib/krb5/auth_context.c:46
#: lib/krb5/auth_context.c:52 lib/krb5/auth_context.c:244
#: lib/krb5/auth_context.c:255 lib/krb5/auth_context.c:455
#: lib/krb5/build_auth.c:65 lib/krb5/build_auth.c:84 lib/krb5/build_auth.c:91
#: lib/krb5/build_auth.c:121 lib/krb5/cache.c:77 lib/krb5/cache.c:104
#: lib/krb5/cache.c:288 lib/krb5/cache.c:361 lib/krb5/cache.c:372
#: lib/krb5/cache.c:493 lib/krb5/cache.c:540 lib/krb5/cache.c:912
#: lib/krb5/cache.c:973 lib/krb5/context.c:71 lib/krb5/context.c:570
#: lib/krb5/context.c:612 lib/krb5/context.c:650 lib/krb5/context.c:803
#: lib/krb5/context.c:885 lib/krb5/convert_creds.c:100
#: lib/krb5/copy_host_realm.c:65 lib/krb5/copy_host_realm.c:74
#: lib/krb5/creds.c:160 lib/krb5/crypto.c:361 lib/krb5/crypto.c:443
#: lib/krb5/crypto.c:457 lib/krb5/crypto.c:505 lib/krb5/crypto.c:583
#: lib/krb5/crypto.c:597 lib/krb5/crypto.c:620 lib/krb5/crypto.c:668
#: lib/krb5/crypto.c:674 lib/krb5/crypto.c:934 lib/krb5/crypto.c:1190
#: lib/krb5/crypto.c:1267 lib/krb5/crypto.c:1300 lib/krb5/crypto.c:1551
#: lib/krb5/crypto.c:1738 lib/krb5/crypto.c:2641 lib/krb5/crypto.c:2810
#: lib/krb5/crypto.c:2874 lib/krb5/crypto.c:2936 lib/krb5/crypto.c:2988
#: lib/krb5/crypto.c:3030 lib/krb5/crypto.c:3059 lib/krb5/crypto.c:3092
#: lib/krb5/crypto.c:3121 lib/krb5/crypto.c:3136 lib/krb5/crypto.c:3818
#: lib/krb5/crypto.c:3824 lib/krb5/crypto.c:3841 lib/krb5/crypto.c:3849
#: lib/krb5/crypto.c:3855 lib/krb5/crypto.c:3951 lib/krb5/crypto.c:3971
#: lib/krb5/crypto.c:4154 lib/krb5/crypto.c:4166 lib/krb5/crypto.c:4172
#: lib/krb5/crypto.c:4345 lib/krb5/crypto.c:4511 lib/krb5/crypto.c:4616
#: lib/krb5/crypto.c:4640 lib/krb5/crypto.c:4691 lib/krb5/v4_glue.c:427
#: lib/krb5/v4_glue.c:484 lib/krb5/v4_glue.c:543 lib/krb5/v4_glue.c:599
#: lib/krb5/v4_glue.c:778 lib/krb5/v4_glue.c:851
msgid "malloc: out of memory"
msgstr "Slut på minne"
#: lib/krb5/acache.c:631 lib/krb5/acache.c:665 lib/krb5/acache.c:692
#: lib/krb5/acache.c:758 lib/krb5/acache.c:995
msgid "No API credential found"
msgstr ""
#: lib/krb5/acache.c:811
#, c-format
msgid "Can't find credential %s in cache"
msgstr ""
#: lib/krb5/acl.c:103
#, c-format
msgid "Unknown format specifier %c while parsing ACL"
msgstr ""
#: lib/krb5/acl.c:225 lib/krb5/acl.c:294
msgid "ACL did not match"
msgstr ""
#: lib/krb5/acl.c:264
#, c-format
msgid "open(%s): %s"
msgstr ""
#: lib/krb5/addr_families.c:206
#, c-format
msgid "IPv4 prefix too large (%ld)"
msgstr ""
#: lib/krb5/addr_families.c:400
#, c-format
msgid "IPv6 prefix too large (%ld)"
msgstr ""
#: lib/krb5/addr_families.c:406
msgid "IPv6 addr bad length"
msgstr ""
#: lib/krb5/addr_families.c:793 lib/krb5/addr_families.c:821
#: lib/krb5/addr_families.c:976 lib/krb5/addr_families.c:1010
#: lib/krb5/addr_families.c:1174 lib/krb5/addr_families.c:1183
#, c-format
msgid "Address family %d not supported"
msgstr ""
#: lib/krb5/addr_families.c:860
#, c-format
msgid "Address type %d not supported"
msgstr ""
#: lib/krb5/addr_families.c:868
#, c-format
msgid "Can't convert address type %d to sockaddr"
msgstr ""
#: lib/krb5/addr_families.c:1482
#, c-format
msgid "Address family %d doesn't support address mask operation"
msgstr ""
#: lib/krb5/cache.c:64
#, c-format
msgid "cache type %s already exists"
msgstr ""
#: lib/krb5/cache.c:173
#, c-format
msgid "unknown ccache type %s"
msgstr ""
#: lib/krb5/cache.c:965
#, c-format
msgid "Credential cache type %s doesn't support iterations over caches"
msgstr ""
#: lib/krb5/cache.c:1078
#, c-format
msgid "Principal %s not found in a credential cache"
msgstr ""
#: lib/krb5/cache.c:1111
msgid "Moving credentials between diffrent types not yet supported"
msgstr ""
#: lib/krb5/changepw.c:315
#, c-format
msgid "Message too large from %s"
msgstr ""
#: lib/krb5/changepw.c:665
#, c-format
msgid "Unable to reach any changepw server in realm %s"
msgstr ""
#: lib/krb5/convert_creds.c:136
#, c-format
msgid "converting credentials: %s"
msgstr ""
#: lib/krb5/crypto.c:3586
msgid "Checksum larger then input buffer"
msgstr ""
#: lib/krb5/v4_glue.c:151 lib/krb5/v4_glue.c:297
msgid "Failed getting the krb4 credentials cache name"
msgstr ""
#: lib/krb5/v4_glue.c:160
#, c-format
msgid "Failed opening krb4 credential cache %s: %s"
msgstr ""
#: lib/krb5/v4_glue.c:170
#, c-format
msgid "krb4 credential cache %s is not a file"
msgstr ""
#: lib/krb5/v4_glue.c:185
#, c-format
msgid "Failed to lock credentail cache %s"
msgstr ""
#: lib/krb5/v4_glue.c:197
#, c-format
msgid "Failed to truncate krb4 cc %s"
msgstr ""
#: lib/krb5/v4_glue.c:305
#, c-format
msgid "Failed removing the cache %s with error %s"
msgstr ""
#: lib/krb5/v4_glue.c:455 lib/krb5/v4_glue.c:515 lib/krb5/v4_glue.c:568
msgid "Failed to encode kerberos 4 ticket"
msgstr ""
#: lib/krb5/v4_glue.c:786
msgid "Failed reading v4 pvno"
msgstr ""
#: lib/krb5/v4_glue.c:792
msgid "Failed v4 pvno not 4"
msgstr ""
#: lib/krb5/v4_glue.c:798
msgid "Failed readin v4 type"
msgstr ""
#: lib/krb5/v4_glue.c:808
msgid "Not a valid v4 request type"
msgstr ""
#: lib/krb5/v4_glue.c:821
msgid "Failed reading v4 ticket"
msgstr ""
#: lib/krb5/v4_glue.c:837
msgid "Failed reading v4 authenticator"
msgstr ""
#: lib/krb5/v4_glue.c:872
msgid "v4 principal mismatch"
msgstr ""
#: lib/krb5/v4_glue.c:879
msgid "v4 bad address in ticket"
msgstr ""
#: lib/krb5/v4_glue.c:887
msgid "v4 clock skew"
msgstr ""
#: lib/krb5/v4_glue.c:898
msgid "v4 clock skew for expiration"
msgstr ""
#: lib/krb5/v4_glue.c:904
msgid "v4 ticket expired"
msgstr ""