pidgin/pidgin

Updated translations from Transifex.
release-2.x.y
2014-01-21, Mark Doliner
ec41ca5592e5
Updated translations from Transifex.

I think we should probably change this workflow a bit.
- Stop listing updates in ChangeLog. I doubt many people care about
this and I don't like spending time updating it. We don't have enough
man-hours as it is, we shouldn't be spending our time with overhead.
- Always fetch/rebase/commit all translations from transifex before
releasing.
- Maybe stop listing translators in a help dialog and just point to
transifex, instead. Unless we think this is important enough to
keep updated within the codebase.
EXTRA_DIST = \
Makefile.mingw \
lib/common.c \
lib/compat.h \
lib/COPYING \
lib/dcc.c \
lib/dcc7.c \
lib/debug.c \
lib/deflate.c \
lib/deflate.h \
lib/encoding.c \
lib/encoding.h \
lib/events.c \
lib/handlers.c \
lib/http.c \
lib/libgadu.h \
lib/libgadu.c \
lib/libgadu-config.h \
lib/libgadu-debug.h \
lib/libgadu-internal.h \
lib/message.c \
lib/message.h \
lib/obsolete.c \
lib/protocol.h \
lib/pubdir.c \
lib/pubdir50.c \
lib/resolver.c \
lib/resolver.h \
lib/session.h \
lib/sha1.c
pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
if USE_INTERNAL_LIBGADU
INTGGSOURCES = \
lib/common.c \
lib/compat.h \
lib/dcc.c \
lib/dcc7.c \
lib/debug.c \
lib/deflate.c \
lib/deflate.h \
lib/encoding.c \
lib/encoding.h \
lib/events.c \
lib/handlers.c \
lib/http.c \
lib/libgadu.h \
lib/libgadu.c \
lib/libgadu-config.h \
lib/libgadu-internal.h \
lib/message.c \
lib/message.h \
lib/obsolete.c \
lib/protocol.h \
lib/pubdir.c \
lib/pubdir50.c \
lib/resolver.c \
lib/resolver.h \
lib/session.h \
lib/sha1.c
INTGG_CFLAGS = -I$(top_srcdir)/libpurple/protocols/gg/lib -DGG_IGNORE_DEPRECATED -DUSE_INTERNAL_LIBGADU
endif
if USE_GNUTLS
GADU_LIBS += $(GNUTLS_LIBS)
GADU_CFLAGS += $(GNUTLS_CFLAGS)
endif
GGSOURCES = \
$(INTGGSOURCES) \
gg-utils.h \
gg-utils.c \
confer.h \
confer.c \
search.h \
search.c \
buddylist.h \
buddylist.c \
gg.h \
gg.c
AM_CFLAGS = $(st)
libgg_la_LDFLAGS = -module -avoid-version
if STATIC_GG
st = -DPURPLE_STATIC_PRPL $(GADU_CFLAGS)
noinst_LTLIBRARIES = libgg.la
libgg_la_SOURCES = $(GGSOURCES)
libgg_la_CFLAGS = $(AM_CFLAGS)
libgg_la_LIBADD = $(GADU_LIBS)
else
st = $(GADU_CFLAGS)
pkg_LTLIBRARIES = libgg.la
libgg_la_SOURCES = $(GGSOURCES)
libgg_la_LIBADD = $(GLIB_LIBS) $(GADU_LIBS)
endif
AM_CPPFLAGS = \
-I$(top_srcdir)/libpurple \
-I$(top_builddir)/libpurple \
$(INTGG_CFLAGS) \
$(GLIB_CFLAGS) \
$(DEBUG_CFLAGS)