[Pkg-samba-maint] r3682 - in branches/samba/lenny/debian: . patches po
bubulle at alioth.debian.org
bubulle at alioth.debian.org
Tue Mar 1 19:17:04 UTC 2011
Author: bubulle
Date: 2011-03-01 19:17:03 +0000 (Tue, 01 Mar 2011)
New Revision: 3682
Added:
branches/samba/lenny/debian/patches/security-CVE-2011-0719.patch
Modified:
branches/samba/lenny/debian/changelog
branches/samba/lenny/debian/patches/series
branches/samba/lenny/debian/po/ar.po
branches/samba/lenny/debian/po/bg.po
branches/samba/lenny/debian/po/bs.po
branches/samba/lenny/debian/po/ca.po
branches/samba/lenny/debian/po/cs.po
branches/samba/lenny/debian/po/da.po
branches/samba/lenny/debian/po/de.po
branches/samba/lenny/debian/po/dz.po
branches/samba/lenny/debian/po/el.po
branches/samba/lenny/debian/po/eo.po
branches/samba/lenny/debian/po/es.po
branches/samba/lenny/debian/po/et.po
branches/samba/lenny/debian/po/eu.po
branches/samba/lenny/debian/po/fi.po
branches/samba/lenny/debian/po/fr.po
branches/samba/lenny/debian/po/gl.po
branches/samba/lenny/debian/po/gu.po
branches/samba/lenny/debian/po/he.po
branches/samba/lenny/debian/po/hu.po
branches/samba/lenny/debian/po/id.po
branches/samba/lenny/debian/po/it.po
branches/samba/lenny/debian/po/ja.po
branches/samba/lenny/debian/po/ka.po
branches/samba/lenny/debian/po/km.po
branches/samba/lenny/debian/po/ko.po
branches/samba/lenny/debian/po/ku.po
branches/samba/lenny/debian/po/lt.po
branches/samba/lenny/debian/po/ml.po
branches/samba/lenny/debian/po/mr.po
branches/samba/lenny/debian/po/nb.po
branches/samba/lenny/debian/po/ne.po
branches/samba/lenny/debian/po/nl.po
branches/samba/lenny/debian/po/nn.po
branches/samba/lenny/debian/po/pl.po
branches/samba/lenny/debian/po/pt.po
branches/samba/lenny/debian/po/pt_BR.po
branches/samba/lenny/debian/po/ro.po
branches/samba/lenny/debian/po/ru.po
branches/samba/lenny/debian/po/sk.po
branches/samba/lenny/debian/po/sl.po
branches/samba/lenny/debian/po/sq.po
branches/samba/lenny/debian/po/sv.po
branches/samba/lenny/debian/po/ta.po
branches/samba/lenny/debian/po/th.po
branches/samba/lenny/debian/po/tl.po
branches/samba/lenny/debian/po/tr.po
branches/samba/lenny/debian/po/vi.po
branches/samba/lenny/debian/po/wo.po
branches/samba/lenny/debian/po/zh_CN.po
branches/samba/lenny/debian/po/zh_TW.po
Log:
Release 2:3.2.5-4lenny14
Modified: branches/samba/lenny/debian/changelog
===================================================================
--- branches/samba/lenny/debian/changelog 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/changelog 2011-03-01 19:17:03 UTC (rev 3682)
@@ -1,3 +1,10 @@
+samba (2:3.2.5-4lenny14) oldstable-security; urgency=high
+
+ * Security update, fixing the following issue:
+ - CVE-2011-0719: denial of service by memory corruption
+
+ -- Christian Perrier <bubulle at debian.org> Wed, 23 Feb 2011 20:44:00 +0100
+
samba (2:3.2.5-4lenny13) stable-security; urgency=high
[ Christian Perrier ]
Added: branches/samba/lenny/debian/patches/security-CVE-2011-0719.patch
===================================================================
--- branches/samba/lenny/debian/patches/security-CVE-2011-0719.patch (rev 0)
+++ branches/samba/lenny/debian/patches/security-CVE-2011-0719.patch 2011-03-01 19:17:03 UTC (rev 3682)
@@ -0,0 +1,533 @@
+Goal: Fix denial of service - memory corruption
+
+Fixes: Upstream security fix. CVE-2011-0719
+
+Status wrt upstream: Fixed in 3.5.7
+
+Author: Samba Team <security at samba.org>
+
+Index: lenny/source/client/client.c
+===================================================================
+--- lenny.orig/source/client/client.c
++++ lenny/source/client/client.c
+@@ -4362,8 +4362,10 @@
+
+ again:
+
+- if (cli->fd == -1)
++ if (cli->fd < 0 || cli->fd >= FD_SETSIZE) {
++ errno = EBADF;
+ return;
++ }
+
+ FD_ZERO(&fds);
+ FD_SET(cli->fd,&fds);
+Index: lenny/source/client/dnsbrowse.c
+===================================================================
+--- lenny.orig/source/client/dnsbrowse.c
++++ lenny/source/client/dnsbrowse.c
+@@ -81,6 +81,11 @@
+ TALLOC_FREE(fdset);
+ }
+
++ if (mdnsfd < 0 || mdnsfd >= FD_SETSIZE) {
++ errno = EBADF;
++ break;
++ }
++
+ fdsetsz = howmany(mdnsfd + 1, NFDBITS) * sizeof(fd_mask);
+ fdset = TALLOC_ZERO(ctx, fdsetsz);
+ FD_SET(mdnsfd, fdset);
+@@ -183,6 +188,13 @@
+
+ fdsetsz = howmany(mdnsfd + 1, NFDBITS) * sizeof(fd_mask);
+ fdset = TALLOC_ZERO(ctx, fdsetsz);
++
++ if (mdnsfd < 0 || mdnsfd >= FD_SETSIZE) {
++ errno = EBADF;
++ TALLOC_FREE(ctx);
++ return 1;
++ }
++
+ FD_SET(mdnsfd, fdset);
+
+ tv.tv_sec = 1;
+Index: lenny/source/lib/events.c
+===================================================================
+--- lenny.orig/source/lib/events.c
++++ lenny/source/lib/events.c
+@@ -148,6 +148,11 @@
+ {
+ struct fd_event *fde;
+
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ errno = EBADF;
++ return NULL;
++ }
++
+ if (!(fde = TALLOC_P(mem_ctx, struct fd_event))) {
+ return NULL;
+ }
+@@ -198,6 +203,14 @@
+ bool ret = False;
+
+ for (fde = event_ctx->fd_events; fde; fde = fde->next) {
++ if (fde->fd < 0 || fde->fd >= FD_SETSIZE) {
++ /* We ignore here, as it shouldn't be
++ possible to add an invalid fde->fd
++ but we don't want FD_SET to see an
++ invalid fd. */
++ continue;
++ }
++
+ if (fde->flags & EVENT_FD_READ) {
+ FD_SET(fde->fd, read_fds);
+ ret = True;
+Index: lenny/source/lib/packet.c
+===================================================================
+--- lenny.orig/source/lib/packet.c
++++ lenny/source/lib/packet.c
+@@ -106,6 +106,11 @@
+ int res;
+ fd_set r_fds;
+
++ if (ctx->fd < 0 || ctx->fd >= FD_SETSIZE) {
++ errno = EBADF;
++ return map_nt_error_from_unix(errno);
++ }
++
+ FD_ZERO(&r_fds);
+ FD_SET(ctx->fd, &r_fds);
+
+Index: lenny/source/lib/readline.c
+===================================================================
+--- lenny.orig/source/lib/readline.c
++++ lenny/source/lib/readline.c
+@@ -73,6 +73,11 @@
+ timeout.tv_sec = 5;
+ timeout.tv_usec = 0;
+
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ errno = EBADF;
++ break;
++ }
++
+ FD_ZERO(&fds);
+ FD_SET(fd,&fds);
+
+Index: lenny/source/lib/select.c
+===================================================================
+--- lenny.orig/source/lib/select.c
++++ lenny/source/lib/select.c
+@@ -61,6 +61,11 @@
+ if (pipe(select_pipe) == -1)
+ smb_panic("Could not create select pipe");
+
++ if (select_pipe[0] < 0 || select_pipe[0] >= FD_SETSIZE) {
++ errno = EBADF;
++ return -1;
++ }
++
+ /*
+ * These next two lines seem to fix a bug with the Linux
+ * 2.0.x kernel (and probably other UNIXes as well) where
+Index: lenny/source/lib/util_sock.c
+===================================================================
+--- lenny.orig/source/lib/util_sock.c
++++ lenny/source/lib/util_sock.c
+@@ -960,6 +960,11 @@
+ timeout.tv_usec = (long)(1000 * (time_out % 1000));
+
+ for (nread=0; nread < mincnt; ) {
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ errno = EBADF;
++ return map_nt_error_from_unix(EBADF);
++ }
++
+ FD_ZERO(&fds);
+ FD_SET(fd,&fds);
+
+@@ -1492,7 +1497,7 @@
+
+ for (i=0; i<num_addrs; i++) {
+ sockets[i] = socket(addrs[i].ss_family, SOCK_STREAM, 0);
+- if (sockets[i] < 0)
++ if (sockets[i] < 0 || sockets[i] >= FD_SETSIZE)
+ goto done;
+ set_blocking(sockets[i], false);
+ }
+@@ -1541,8 +1546,10 @@
+ FD_ZERO(&r_fds);
+
+ for (i=0; i<num_addrs; i++) {
+- if (sockets[i] == -1)
++ if (sockets[i] < 0 || sockets[i] >= FD_SETSIZE) {
++ /* This cannot happen - ignore if so. */
+ continue;
++ }
+ FD_SET(sockets[i], &wr_fds);
+ FD_SET(sockets[i], &r_fds);
+ if (sockets[i]>maxfd)
+Index: lenny/source/libaddns/dnssock.c
+===================================================================
+--- lenny.orig/source/libaddns/dnssock.c
++++ lenny/source/libaddns/dnssock.c
+@@ -218,7 +218,11 @@
+ while (total < len) {
+ ssize_t ret;
+ int fd_ready;
+-
++
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ return ERROR_DNS_SOCKET_ERROR;
++ }
++
+ FD_ZERO( &rfds );
+ FD_SET( fd, &rfds );
+
+Index: lenny/source/libsmb/nmblib.c
+===================================================================
+--- lenny.orig/source/libsmb/nmblib.c
++++ lenny/source/libsmb/nmblib.c
+@@ -1097,6 +1097,11 @@
+ struct timeval timeout;
+ int ret;
+
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ errno = EBADF;
++ return NULL;
++ }
++
+ FD_ZERO(&fds);
+ FD_SET(fd,&fds);
+ timeout.tv_sec = t/1000;
+Index: lenny/source/nmbd/nmbd_packets.c
+===================================================================
+--- lenny.orig/source/nmbd/nmbd_packets.c
++++ lenny/source/nmbd/nmbd_packets.c
+@@ -1685,7 +1685,7 @@
+ for (subrec = FIRST_SUBNET; subrec; subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec))
+ count++;
+
+- if((count*2) + 2 > FD_SETSIZE) {
++ if((count*2) + 2 >= FD_SETSIZE) {
+ DEBUG(0,("create_listen_fdset: Too many file descriptors needed (%d). We can \
+ only use %d.\n", (count*2) + 2, FD_SETSIZE));
+ SAFE_FREE(pset);
+@@ -1701,24 +1701,44 @@
+ FD_ZERO(pset);
+
+ /* Add in the broadcast socket on 137. */
++ if (ClientNMB < 0 || ClientNMB >= FD_SETSIZE) {
++ errno = EBADF;
++ SAFE_FREE(pset);
++ return True;
++ }
++
+ FD_SET(ClientNMB,pset);
+ sock_array[num++] = ClientNMB;
+ *maxfd = MAX( *maxfd, ClientNMB);
+
+ /* Add in the 137 sockets on all the interfaces. */
+ for (subrec = FIRST_SUBNET; subrec; subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec)) {
++ if (subrec->nmb_sock < 0 || subrec->nmb_sock >= FD_SETSIZE) {
++ /* We have to ignore sockets outside FD_SETSIZE. */
++ continue;
++ }
+ FD_SET(subrec->nmb_sock,pset);
+ sock_array[num++] = subrec->nmb_sock;
+ *maxfd = MAX( *maxfd, subrec->nmb_sock);
+ }
+
+ /* Add in the broadcast socket on 138. */
++ if (ClientDGRAM < 0 || ClientDGRAM >= FD_SETSIZE) {
++ errno = EBADF;
++ SAFE_FREE(pset);
++ return True;
++ }
++
+ FD_SET(ClientDGRAM,pset);
+ sock_array[num++] = ClientDGRAM;
+ *maxfd = MAX( *maxfd, ClientDGRAM);
+
+ /* Add in the 138 sockets on all the interfaces. */
+ for (subrec = FIRST_SUBNET; subrec; subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec)) {
++ if (subrec->dgram_sock < 0 || subrec->dgram_sock >= FD_SETSIZE) {
++ /* We have to ignore sockets outside FD_SETSIZE. */
++ continue;
++ }
+ FD_SET(subrec->dgram_sock,pset);
+ sock_array[num++] = subrec->dgram_sock;
+ *maxfd = MAX( *maxfd, subrec->dgram_sock);
+@@ -1769,7 +1789,7 @@
+
+ #ifndef SYNC_DNS
+ dns_fd = asyncdns_fd();
+- if (dns_fd != -1) {
++ if (dns_fd >= 0 && dns_fd < FD_SETSIZE) {
+ FD_SET(dns_fd, &r_fds);
+ maxfd = MAX( maxfd, dns_fd);
+ }
+Index: lenny/source/nsswitch/wb_common.c
+===================================================================
+--- lenny.orig/source/nsswitch/wb_common.c
++++ lenny/source/nsswitch/wb_common.c
+@@ -240,6 +240,12 @@
+
+ switch (errno) {
+ case EINPROGRESS:
++
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ errno = EBADF;
++ goto error_out;
++ }
++
+ FD_ZERO(&w_fds);
+ FD_SET(fd, &w_fds);
+ tv.tv_sec = CONNECT_TIMEOUT - wait_time;
+@@ -383,7 +389,13 @@
+ while(nwritten < count) {
+ struct timeval tv;
+ fd_set r_fds;
+-
++
++ if (winbindd_fd < 0 || winbindd_fd >= FD_SETSIZE) {
++ errno = EBADF;
++ winbind_close_sock();
++ return -1;
++ }
++
+ /* Catch pipe close on other end by checking if a read()
+ call would not block by calling select(). */
+
+Index: lenny/source/smbd/dnsregister.c
+===================================================================
+--- lenny.orig/source/smbd/dnsregister.c
++++ lenny/source/smbd/dnsregister.c
+@@ -125,6 +125,9 @@
+ */
+ if (dns_state->srv_ref != NULL) {
+ mdnsd_conn_fd = DNSServiceRefSockFD(dns_state->srv_ref);
++ if (mdnsd_conn_fd < 0 || mdnsd_conn_fd >= FD_SETSIZE) {
++ return;
++ }
+ FD_SET(mdnsd_conn_fd, listen_set);
+ return;
+ }
+@@ -156,6 +159,9 @@
+ }
+
+ mdnsd_conn_fd = DNSServiceRefSockFD(dns_state->srv_ref);
++ if (mdnsd_conn_fd < 0 || mdnsd_conn_fd >= FD_SETSIZE) {
++ return;
++ }
+ FD_SET(mdnsd_conn_fd, listen_set);
+ *maxfd = MAX(*maxfd, mdnsd_conn_fd);
+ *timeout = timeval_zero();
+Index: lenny/source/smbd/oplock.c
+===================================================================
+--- lenny.orig/source/smbd/oplock.c
++++ lenny/source/smbd/oplock.c
+@@ -233,7 +233,10 @@
+ int oplock_notify_fd(void)
+ {
+ if (koplocks) {
+- return koplocks->notification_fd;
++ int fd = koplocks->notification_fd;
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ return -1;
++ }
+ }
+
+ return -1;
+Index: lenny/source/smbd/oplock_irix.c
+===================================================================
+--- lenny.orig/source/smbd/oplock_irix.c
++++ lenny/source/smbd/oplock_irix.c
+@@ -284,6 +284,11 @@
+ return False;
+ }
+
++ if (pfd[0] < 0 || pfd[0] >= FD_SETSIZE) {
++ DEBUG(0,("setup_kernel_oplock_pipe: fd out of range.\n"));
++ return False;
++ }
++
+ oplock_pipe_read = pfd[0];
+ oplock_pipe_write = pfd[1];
+
+Index: lenny/source/smbd/process.c
+===================================================================
+--- lenny.orig/source/smbd/process.c
++++ lenny/source/smbd/process.c
+@@ -685,7 +685,7 @@
+
+ static int select_on_fd(int fd, int maxfd, fd_set *fds)
+ {
+- if (fd != -1) {
++ if (fd != -1 && fd < FD_SETSIZE) {
+ FD_SET(fd, fds);
+ maxfd = MAX(maxfd, fd);
+ }
+Index: lenny/source/smbd/server.c
+===================================================================
+--- lenny.orig/source/smbd/server.c
++++ lenny/source/smbd/server.c
+@@ -203,7 +203,13 @@
+ /* Started from inetd. fd 0 is the socket. */
+ /* We will abort gracefully when the client or remote system
+ goes away */
+- smbd_set_server_fd(dup(0));
++ int fd = dup(0);
++
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ return false;
++ }
++
++ smbd_set_server_fd(fd);
+
+ /* close our standard file descriptors */
+ close_low_fds(False); /* Don't close stderr */
+@@ -422,7 +428,7 @@
+ num_sockets == 0 ? 0 : 2,
+ ifss,
+ true);
+- if(s == -1) {
++ if (s < 0 || s >= FD_SETSIZE) {
+ continue;
+ }
+
+@@ -503,7 +509,7 @@
+ num_sockets == 0 ? 0 : 2,
+ &ss,
+ true);
+- if (s == -1) {
++ if (s < 0 || s >= FD_SETSIZE) {
+ continue;
+ }
+
+@@ -677,6 +683,7 @@
+ struct sockaddr addr;
+ socklen_t in_addrlen = sizeof(addr);
+ pid_t child = 0;
++ int fd;
+
+ s = -1;
+ for(i = 0; i < num_sockets; i++) {
+@@ -689,17 +696,22 @@
+ }
+ }
+
+- smbd_set_server_fd(accept(s,&addr,&in_addrlen));
+-
+- if (smbd_server_fd() == -1 && errno == EINTR)
++ fd = accept(s,&addr,&in_addrlen);
++ if (fd == -1 && errno == EINTR)
+ continue;
+-
+- if (smbd_server_fd() == -1) {
++ if (fd == -1) {
+ DEBUG(2,("open_sockets_smbd: accept: %s\n",
+- strerror(errno)));
++ strerror(errno)));
++ continue;
++ }
++ if (fd < 0 || fd >= FD_SETSIZE) {
++ DEBUG(2,("open_sockets_smbd: bad fd %d\n",
++ fd ));
+ continue;
+ }
+
++ smbd_set_server_fd(fd);
++
+ /* Ensure child is set to blocking mode */
+ set_blocking(smbd_server_fd(),True);
+
+Index: lenny/source/utils/smbfilter.c
+===================================================================
+--- lenny.orig/source/utils/smbfilter.c
++++ lenny/source/utils/smbfilter.c
+@@ -162,8 +162,8 @@
+ int num;
+
+ FD_ZERO(&fds);
+- if (s != -1) FD_SET(s, &fds);
+- if (c != -1) FD_SET(c, &fds);
++ if (s >= 0 && s < FD_SETSIZE) FD_SET(s, &fds);
++ if (c >= 0 && c < FD_SETSIZE) FD_SET(c, &fds);
+
+ num = sys_select_intr(MAX(s+1, c+1),&fds,NULL,NULL,NULL);
+ if (num <= 0) continue;
+@@ -235,6 +235,10 @@
+ struct sockaddr_storage ss;
+ socklen_t in_addrlen = sizeof(ss);
+
++ if (s < 0 || s >= FD_SETSIZE) {
++ break;
++ }
++
+ FD_ZERO(&fds);
+ FD_SET(s, &fds);
+
+Index: lenny/source/winbindd/winbindd.c
+===================================================================
+--- lenny.orig/source/winbindd/winbindd.c
++++ lenny/source/winbindd/winbindd.c
+@@ -845,7 +845,8 @@
+ listen_sock = open_winbindd_socket();
+ listen_priv_sock = open_winbindd_priv_socket();
+
+- if (listen_sock == -1 || listen_priv_sock == -1) {
++ if (listen_sock < 0 || listen_sock >= FD_SETSIZE ||
++ listen_priv_sock < 0 || listen_priv_sock >= FD_SETSIZE) {
+ perror("open_winbind_socket");
+ exit(1);
+ }
+@@ -866,6 +867,9 @@
+
+ maxfd = MAX(listen_sock, listen_priv_sock);
+
++ /* We check the range for listen_sock and
++ listen_priv_sock above. */
++
+ FD_ZERO(&r_fds);
+ FD_ZERO(&w_fds);
+ FD_SET(listen_sock, &r_fds);
+@@ -897,6 +901,12 @@
+ }
+
+ for (ev = fd_events; ev; ev = ev->next) {
++ if (ev->fd < 0 || ev->fd >= FD_SETSIZE) {
++ /* Ignore here - event_add_to_select_args
++ should make this impossible. */
++ continue;
++ }
++
+ if (ev->flags & EVENT_FD_READ) {
+ FD_SET(ev->fd, &r_fds);
+ maxfd = MAX(ev->fd, maxfd);
+Index: lenny/source/winbindd/winbindd_dual.c
+===================================================================
+--- lenny.orig/source/winbindd/winbindd_dual.c
++++ lenny/source/winbindd/winbindd_dual.c
+@@ -1009,6 +1009,12 @@
+ return False;
+ }
+
++ if (fdpair[0] < 0 || fdpair[0] >= FD_SETSIZE) {
++ DEBUG(0, ("fork_domain_child: bad fd range (%d)\n", fdpair[0]));
++ errno = EBADF;
++ return False;
++ }
++
+ ZERO_STRUCT(state);
+ state.pid = sys_getpid();
+
+@@ -1173,6 +1179,7 @@
+ message_dispatch(winbind_messaging_context());
+
+ FD_ZERO(&read_fds);
++ /* We check state.sock against FD_SETSIZE above. */
+ FD_SET(state.sock, &read_fds);
+
+ ret = sys_select(state.sock + 1, &read_fds, NULL, NULL, tp);
Modified: branches/samba/lenny/debian/patches/series
===================================================================
--- branches/samba/lenny/debian/patches/series 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/patches/series 2011-03-01 19:17:03 UTC (rev 3682)
@@ -45,3 +45,4 @@
bug_538819_upstream_7021.patch
security-CVE-2010-2063.patch
security-CVE-2010-3069.patch
+security-CVE-2011-0719.patch
Modified: branches/samba/lenny/debian/po/ar.po
===================================================================
--- branches/samba/lenny/debian/po/ar.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ar.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -13,6 +13,7 @@
"PO-Revision-Date: 2007-03-14 11:37+0300\n"
"Last-Translator: Ossama M. Khayat <okhayat at yahoo.com>\n"
"Language-Team: Arabic <support at arabeyes.org>\n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/bg.po
===================================================================
--- branches/samba/lenny/debian/po/bg.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/bg.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -9,6 +9,7 @@
"PO-Revision-Date: 2007-03-12 22:58+0200\n"
"Last-Translator: Damyan Ivanov <dam at modsoftsys.com>\n"
"Language-Team: Bulgarian <dict at fsa-bg.org>\n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/bs.po
===================================================================
--- branches/samba/lenny/debian/po/bs.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/bs.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2006-11-01 22:14+0100\n"
"Last-Translator: Safir Secerovic <sapphire at linux.org.ba>\n"
"Language-Team: Bosnian <lokal at linux.org.ba>\n"
+"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ca.po
===================================================================
--- branches/samba/lenny/debian/po/ca.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ca.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -10,6 +10,7 @@
"PO-Revision-Date: 2006-08-13 15:16-0700\n"
"Last-Translator: Jordi Mallach <jordi at debian.org>\n"
"Language-Team: Debian L10n Catalan <debian-l10n-catalan at lists.debian.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/cs.po
===================================================================
--- branches/samba/lenny/debian/po/cs.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/cs.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-13 22:31+0100\n"
"Last-Translator: Miroslav Kure <kurem at debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech at lists.debian.org>\n"
+"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/da.po
===================================================================
--- branches/samba/lenny/debian/po/da.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/da.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2007-05-30 22:20+0200\n"
"Last-Translator: Claus Hindsgaul <claus.hindsgaul at gmail.com>\n"
"Language-Team: Danish\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/de.po
===================================================================
--- branches/samba/lenny/debian/po/de.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/de.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-12 22:27+0100\n"
"Last-Translator: Holger Wansing <linux at wansing-online.de>\n"
"Language-Team: German <debian-l10n-german at lists.debian.org>\n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/dz.po
===================================================================
--- branches/samba/lenny/debian/po/dz.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/dz.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-13 02:22+0530\n"
"Last-Translator: translator <pemai_jurmey at hotmail.com>\n"
"Language-Team: dzongkha <pgeyleg at dit.gov.bt>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/el.po
===================================================================
--- branches/samba/lenny/debian/po/el.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/el.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-16 11:29+0200\n"
"Last-Translator: galaxico\n"
"Language-Team: <en at li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/eo.po
===================================================================
--- branches/samba/lenny/debian/po/eo.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/eo.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -10,6 +10,7 @@
"PO-Revision-Date: 2007-04-04 17:14+0200\n"
"Last-Translator: Serge Leblanc <serge.leblanc at wanadoo.fr>\n"
"Language-Team: Esperanto <debian-l10n-esperanto at lists.debian.org>\n"
+"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/es.po
===================================================================
--- branches/samba/lenny/debian/po/es.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/es.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -42,6 +42,7 @@
"PO-Revision-Date: 2006-10-08 13:43+0200\n"
"Last-Translator: Steve Langasek <vorlon at debian.org>\n"
"Language-Team: Debian Spanish <debian-l10n-spanish at lists.debian.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/et.po
===================================================================
--- branches/samba/lenny/debian/po/et.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/et.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-13 10:26+0300\n"
"Last-Translator: Siim Põder <siim at p6drad-teel.net>\n"
"Language-Team: \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/eu.po
===================================================================
--- branches/samba/lenny/debian/po/eu.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/eu.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -21,6 +21,7 @@
"PO-Revision-Date: 2007-04-07 23:18+0200\n"
"Last-Translator: Piarres Beobide <pi at beobide.net>\n"
"Language-Team: librezale <librezale at librezale.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/fi.po
===================================================================
--- branches/samba/lenny/debian/po/fi.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/fi.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -10,6 +10,7 @@
"PO-Revision-Date: 2007-03-13 18:35+0200\n"
"Last-Translator: Tapio Lehtonen <tale at debian.org>\n"
"Language-Team: Finnish <debian-l10n-finnish at lists.debian.org>\n"
+"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/fr.po
===================================================================
--- branches/samba/lenny/debian/po/fr.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/fr.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -21,6 +21,7 @@
"PO-Revision-Date: 2007-03-12 20:08+0100\n"
"Last-Translator: Christian Perrier <bubulle at debian.org>\n"
"Language-Team: French <debian-l10n-french at lists.debian.org>\n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/gl.po
===================================================================
--- branches/samba/lenny/debian/po/gl.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/gl.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-12 20:24+0100\n"
"Last-Translator: Jacobo Tarrio <jtarrio at debian.org>\n"
"Language-Team: Galician <trasno at ceu.fi.udc.es>\n"
+"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/gu.po
===================================================================
--- branches/samba/lenny/debian/po/gu.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/gu.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-06-08 20:22+0530\n"
"Last-Translator: Kartik Mistry <kartik.mistry at gmail.com>\n"
"Language-Team: Gujarati <team at utkarsh.org>\n"
+"Language: gu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/he.po
===================================================================
--- branches/samba/lenny/debian/po/he.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/he.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -12,6 +12,7 @@
"PO-Revision-Date: 2007-09-25 21:03+0200\n"
"Last-Translator: Katriel Traum <katriel.traum at gmail.com>\n"
"Language-Team: Hebrew <debian-hebrew-common at lists.alioth.debian.org>\n"
+"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/hu.po
===================================================================
--- branches/samba/lenny/debian/po/hu.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/hu.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2007-03-13 09:20+0100\n"
"Last-Translator: SZERVÁC Attila <sas at 321.hu>\n"
"Language-Team: Hungarian <hu at li.org>\n"
+"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/id.po
===================================================================
--- branches/samba/lenny/debian/po/id.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/id.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2008-03-08 18:24+0700\n"
"Last-Translator: Arief S Fitrianto <arief at gurame.fisika.ui.ac.id>\n"
"Language-Team: Bahasa Indonesia <debian-l10n-id at gurame.fisika.ui.ac.id>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/it.po
===================================================================
--- branches/samba/lenny/debian/po/it.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/it.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -2,7 +2,7 @@
# Copyright (C) 2004 Software in the Public Interest
# This file is distributed under the same license as the samba package.
# Luca Monducci <luca.mo at tiscali.it>, 2004-2007.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: samba 3.0.24-4 italian debconf templates\n"
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2006-03-13 13:47+0100\n"
"Last-Translator: Luca Monducci <luca.mo at tiscali.it>\n"
"Language-Team: Italian <debian-l10n-italian at lists.debian.org>\n"
+"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ja.po
===================================================================
--- branches/samba/lenny/debian/po/ja.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ja.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-13 16:39+0900\n"
"Last-Translator: Kenshi Muto <kmuto at debian.org>\n"
"Language-Team: Japanese <debian-japanese at lists.debian.org>\n"
+"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ka.po
===================================================================
--- branches/samba/lenny/debian/po/ka.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ka.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2008-09-10 01:45+0400\n"
"Last-Translator: Aiet Kolkhi <aietkolkhi at gmail.com>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/km.po
===================================================================
--- branches/samba/lenny/debian/po/km.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/km.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -21,6 +21,7 @@
"PO-Revision-Date: 2007-03-13 08:39+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem at khmeros.info>\n"
"Language-Team: Khmer <support at khmeros.info>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ko.po
===================================================================
--- branches/samba/lenny/debian/po/ko.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ko.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -1,5 +1,5 @@
# Sunjae Park <darehanl at gmail.com>, 2006.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: samba\n"
@@ -8,6 +8,7 @@
"PO-Revision-Date: 2007-03-14 09:28-0400\n"
"Last-Translator: Sunjae Park <darehanl at gmail.com>\n"
"Language-Team: Korean <debian-l10n-korean at lists.debian.org>\n"
+"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ku.po
===================================================================
--- branches/samba/lenny/debian/po/ku.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ku.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2008-05-08 13:02+0200\n"
"Last-Translator: Erdal Ronahi <erdal dot ronahi at gmail dot com>\n"
"Language-Team: ku <ubuntu-l10n-kur at lists.ubuntu.com>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/lt.po
===================================================================
--- branches/samba/lenny/debian/po/lt.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/lt.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,12 +19,13 @@
"PO-Revision-Date: 2006-11-26 00:20+0200\n"
"Last-Translator: Gintautas Miliauskas <gintas at akl.lt>\n"
"Language-Team: Lithuanian <komp_lt at konferencijos.lt>\n"
+"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
-"100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
+"%100<10 || n%100>=20) ? 1 : 2);\n"
#. Type: boolean
#. Description
Modified: branches/samba/lenny/debian/po/ml.po
===================================================================
--- branches/samba/lenny/debian/po/ml.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ml.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -22,6 +22,7 @@
"Last-Translator: Praveen A <pravi.a at gmail.com>\n"
"Language-Team: Swathanthra Malayalam Computing <smc-discuss at googlegroups."
"com>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/mr.po
===================================================================
--- branches/samba/lenny/debian/po/mr.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/mr.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -20,6 +20,7 @@
"Last-Translator: Priti Patil <prithisd at gmail.com>\n"
"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
"<janabhaaratii at cdacmumbai.in>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -227,6 +228,6 @@
#~ "automatically migrated to /var/lib/samba/passdb.tdb. Do not choose this "
#~ "option if you plan to use another pdb backend (e.g., LDAP) instead."
#~ msgstr ""
-#~ "कृपया तुम्हाला सध्याची एसएमबी पासवर्ड संचिका आपोआप/व्हीएआर/एलआयबी/सांबा/"
-#~ "पासडीबी।टीडीबी कडे स्थलांतरित झाल्यास चालेल का याची खात्री करा. तुम्हाला त्याऐवजी "
-#~ "दुसरी कोणती पीडीबी बॅकएंड(उदा.एलडीएपी)करावयाची असल्यास हा पर्याय स्वीकारु नका"
+#~ "कृपया तुम्हाला सध्याची एसएमबी पासवर्ड संचिका आपोआप/व्हीएआर/एलआयबी/सांबा/पासडीबी।"
+#~ "टीडीबी कडे स्थलांतरित झाल्यास चालेल का याची खात्री करा. तुम्हाला त्याऐवजी दुसरी "
+#~ "कोणती पीडीबी बॅकएंड(उदा.एलडीएपी)करावयाची असल्यास हा पर्याय स्वीकारु नका"
Modified: branches/samba/lenny/debian/po/nb.po
===================================================================
--- branches/samba/lenny/debian/po/nb.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/nb.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-12 21:44+0100\n"
"Last-Translator: Bjørn Steensrud <bjornst at powertech.no>\n"
"Language-Team: Norwegian Bokmål <i18n-nb at lister.ping.uio.no>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ne.po
===================================================================
--- branches/samba/lenny/debian/po/ne.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ne.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -21,6 +21,7 @@
"PO-Revision-Date: 2007-03-14 05:36+0545\n"
"Last-Translator: Shiva Pokharel <shiva at mpp.org.np>\n"
"Language-Team: Nepali <info at mpp.org.np>\n"
+"Language: ne\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/nl.po
===================================================================
--- branches/samba/lenny/debian/po/nl.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/nl.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-12 21:30+0100\n"
"Last-Translator: Bart Cornelis <cobaco at skolelinux.no>\n"
"Language-Team: debian-l10n-dutch <debian-l10n-dutch at lists.debian.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/nn.po
===================================================================
--- branches/samba/lenny/debian/po/nn.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/nn.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2007-03-17 18:35+0100\n"
"Last-Translator: Håvard Korsvoll <korsvoll at gmail.com>\n"
"Language-Team: Norwegian nynorsk <i18n-nn at lister.ping.uio.no>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/pl.po
===================================================================
--- branches/samba/lenny/debian/po/pl.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/pl.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2008-09-12 10:08+0200\n"
"Last-Translator: Tomasz Majbaum <genobis at genobis.pl>\n"
"Language-Team: polski <debian-l10n-pl at lists.debian.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/pt.po
===================================================================
--- branches/samba/lenny/debian/po/pt.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/pt.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -10,6 +10,7 @@
"PO-Revision-Date: 2006-08-14 07:42-0000\n"
"Last-Translator: Miguel Figueiredo <elmig at debian.org>\n"
"Language-Team: Portuguese <traduz at debianpt.org>\n"
+"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/pt_BR.po
===================================================================
--- branches/samba/lenny/debian/po/pt_BR.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/pt_BR.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-12 16:16-0200\n"
"Last-Translator: André Luís Lopes <andrelop at debian.org>\n"
"Language-Team: Debian-BR Project <debian-l10n-portuguese at lists.debian.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ro.po
===================================================================
--- branches/samba/lenny/debian/po/ro.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ro.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2008-06-29 19:42+0300\n"
"Last-Translator: Eddy Petrișor <eddy.petrisor at gmail.com>\n"
"Language-Team: Romanian <debian-l10n-romanian at lists.debian.org>\n"
+"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ru.po
===================================================================
--- branches/samba/lenny/debian/po/ru.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ru.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -9,6 +9,7 @@
"PO-Revision-Date: 2007-03-13 22:22+0200\n"
"Last-Translator: Pavel Maryanov <acid_jack at ukr.net>\n"
"Language-Team: Russian <ru at li.org>\n"
+"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/sk.po
===================================================================
--- branches/samba/lenny/debian/po/sk.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/sk.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -22,6 +22,7 @@
"PO-Revision-Date: 2007-03-13 07:17+0100\n"
"Last-Translator: Peter Mann <Peter.Mann at tuke.sk>\n"
"Language-Team: Slovak <sk-i18n at lists.linux.sk>\n"
+"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/sl.po
===================================================================
--- branches/samba/lenny/debian/po/sl.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/sl.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-13 08:06+0100\n"
"Last-Translator: Matej Kovačič <matej.kovacic at owca.info>\n"
"Language-Team: Sl <skrat at owca.info>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/sq.po
===================================================================
--- branches/samba/lenny/debian/po/sq.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/sq.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -18,6 +18,7 @@
"PO-Revision-Date: 2007-03-13 21:25+0100\n"
"Last-Translator: Elian Myftiu <elian.myftiu at gmail.com>\n"
"Language-Team: Debian L10n Albanian <debian-l10n-albanian at lists.debian.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/sv.po
===================================================================
--- branches/samba/lenny/debian/po/sv.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/sv.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -18,6 +18,7 @@
"PO-Revision-Date: 2007-03-12 20:57+0100\n"
"Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
"Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
+"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/ta.po
===================================================================
--- branches/samba/lenny/debian/po/ta.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/ta.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2006-12-16 20:10+0530\n"
"Last-Translator: drtvasudevan <agnihot3 at gmail.com>\n"
"Language-Team: TAMIL <Ubuntu-tam at lists.ubuntu.com>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/th.po
===================================================================
--- branches/samba/lenny/debian/po/th.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/th.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -11,6 +11,7 @@
"PO-Revision-Date: 2007-03-13 10:05+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <thep at linux.thai.net>\n"
"Language-Team: Thai <l10n at opentle.org>\n"
+"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/tl.po
===================================================================
--- branches/samba/lenny/debian/po/tl.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/tl.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-13 06:13+0800\n"
"Last-Translator: eric pareja <xenos at upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl at banwa.upm.edu.ph>\n"
+"Language: tl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/tr.po
===================================================================
--- branches/samba/lenny/debian/po/tr.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/tr.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -10,6 +10,7 @@
"PO-Revision-Date: 2007-03-13 18:47+0200\n"
"Last-Translator: Mehmet Türker <mturker at innova.com.tr>\n"
"Language-Team: Turkish <debian-l10n-turkish at lists.debian.org>\n"
+"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/vi.po
===================================================================
--- branches/samba/lenny/debian/po/vi.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/vi.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -1,7 +1,7 @@
# Vietnamese translation for Samba.
# Copyright © 2007 Free Software Foundation, Inc.
# Clytie Siddall <clytie at riverland.net.au>, 2005-2007.
-#
+#
msgid ""
msgstr ""
"Project-Id-Version: samba 3.0.23rc1-1\n"
@@ -10,6 +10,7 @@
"PO-Revision-Date: 2007-06-01 15:32+0930\n"
"Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN at googlegroups.com>\n"
+"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/wo.po
===================================================================
--- branches/samba/lenny/debian/po/wo.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/wo.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-04-30 18:13+0000\n"
"Last-Translator: Mouhamadou Mamoune Mbacke <mouhamadoumamoune at gmail.com>\n"
"Language-Team: Wolof\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/zh_CN.po
===================================================================
--- branches/samba/lenny/debian/po/zh_CN.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/zh_CN.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -23,6 +23,7 @@
"PO-Revision-Date: 2006-10-03 19:36-0500\n"
"Last-Translator: Carlos Z.F. Liu <carlosliu at users.sourceforge.ent>\n"
"Language-Team: Debian Chinese [GB] <debian-chinese-gb at lists.debian.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: branches/samba/lenny/debian/po/zh_TW.po
===================================================================
--- branches/samba/lenny/debian/po/zh_TW.po 2011-03-01 19:13:47 UTC (rev 3681)
+++ branches/samba/lenny/debian/po/zh_TW.po 2011-03-01 19:17:03 UTC (rev 3682)
@@ -19,6 +19,7 @@
"PO-Revision-Date: 2007-03-13 23:18+0800\n"
"Last-Translator: Asho Yeh <asho at debian.org.tw>\n"
"Language-Team: Chinese (traditional) <zh-l10n at linux.org.tw>\n"
+"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
More information about the Pkg-samba-maint
mailing list