[Xfce4-commits] <xfce4-appfinder:master> Use new xdt build stuff.
Nick Schermer
noreply at xfce.org
Mon Oct 19 13:54:01 CEST 2009
Updating branch refs/heads/master
to aaedeb3ae3d40688c7bcbda6fbced8d0c379ea02 (commit)
from 8372af95f8df8f5d173ec9383d6089a04acb2ca4 (commit)
commit aaedeb3ae3d40688c7bcbda6fbced8d0c379ea02
Author: Nick Schermer <nick at xfce.org>
Date: Mon Oct 19 13:53:32 2009 +0200
Use new xdt build stuff.
autogen.sh | 32 +--
configure.in.in | 88 ++----
po/ChangeLog | 830 -------------------------------------------------------
po/LINGUAS | 2 -
4 files changed, 28 insertions(+), 924 deletions(-)
diff --git a/autogen.sh b/autogen.sh
index c0ed6ef..eaead8c 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -18,36 +18,6 @@ EOF
exit 1
}
-# verify that po/LINGUAS is present
-(test -f po/LINGUAS) >/dev/null 2>&1 || {
- cat >&2 <<EOF
-autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
- or try to checkout again.
-EOF
- exit 1
-}
-
-# substitute revision and linguas
-linguas=`sed -e '/^#/d' po/LINGUAS`
-if test -d .git/svn; then
- revision=`git svn find-rev origin/trunk ||
- git svn find-rev trunk ||
- git svn find-rev HEAD ||
- git svn find-rev master`
-else
- revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n",
-$2}'`
-fi
-sed -e "s/@LINGUAS@/${linguas}/g" \
- -e "s/@REVISION@/${revision}/g" \
- < "configure.in.in" > "configure.in"
-
-xdt-autogen $@
-
-# xdt-autogen clean does not remove all generated files
-(test x"clean" = x"$1") && {
- rm -f configure.ac
- rm -f INSTALL
-} || true
+XDT_AUTOGEN_REQUIRED_VERSION="4.7.2" exec xdt-autogen $@
# vi:set ts=2 sw=2 et ai:
diff --git a/configure.in.in b/configure.in.in
index fb1c5a1..f0cfe18 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -7,17 +7,17 @@ dnl ***************************
dnl *** Version information ***
dnl ***************************
m4_define([xfce4_appfinder_version_major], [4])
-m4_define([xfce4_appfinder_version_minor], [6])
-m4_define([xfce4_appfinder_version_micro], [1])
+m4_define([xfce4_appfinder_version_minor], [7])
+m4_define([xfce4_appfinder_version_micro], [0])
m4_define([xfce4_appfinder_version_nano], []) dnl leave this empty to have no nano version
-m4_define([xfce4_appfinder_version_build], [r at REVISION@])
-m4_define([xfce4_appfinder_version_tag], [])
-m4_define([xfce4_appfinder_version], [xfce4_appfinder_version_major().xfce4_appfinder_version_minor().xfce4_appfinder_version_micro()ifelse(xfce4_appfinder_version_nano(), [], [], [.xfce4_appfinder_version_nano()])ifelse(xfce4_appfinder_version_tag(), [svn], [xfce4_appfinder_version_tag()-xfce4_appfinder_version_build()], [xfce4_appfinder_version_tag()])])
+m4_define([xfce4_appfinder_version_build], [@REVISION@])
+m4_define([xfce4_appfinder_version_tag], [git])
+m4_define([xfce4_appfinder_version], [xfce4_appfinder_version_major().xfce4_appfinder_version_minor().xfce4_appfinder_version_micro()ifelse(xfce4_appfinder_version_nano(), [], [], [.xfce4_appfinder_version_nano()])ifelse(xfce4_appfinder_version_tag(), [git], [xfce4_appfinder_version_tag()-xfce4_appfinder_version_build()], [xfce4_appfinder_version_tag()])])
dnl *******************************************
-dnl *** Debugging support for SVN snapshots ***
+dnl *** Debugging support for GIT snapshots ***
dnl *******************************************
-m4_define([appfinder_debug_default], [ifelse(xfce4_appfinder_version_tag(), [svn], [full], [minimum])])
+m4_define([appfinder_debug_default], [ifelse(xfce4_appfinder_version_tag(), [git], [full], [minimum])])
dnl ***************************
dnl *** Initialize autoconf ***
@@ -36,6 +36,7 @@ dnl ***************************
AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE()
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
dnl *******************************
dnl *** Check for UNIX variants ***
@@ -84,60 +85,25 @@ XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.16.0])
dnl ***********************************
dnl *** Check for debugging support ***
dnl ***********************************
-AC_ARG_ENABLE([debug],
-AC_HELP_STRING([--enable-debug=@<:@no/minimum/yes/full@:>@],
- [Turn on debugging @<:@default=appfinder_debug_default@:>@]),
- [], [enable_debug=appfinder_debug_default])
-AC_MSG_CHECKING([whether to enable debugging support])
-if test x"$enable_debug" = x"full" -o x"$enable_debug" = x"yes"; then
- dnl Print the result
- AC_MSG_RESULT([$enable_debug])
-
- dnl Make sure we detect possible errors (if supported)
- save_CFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS -Wall -Werror"
- AC_MSG_CHECKING([whether $CC accepts -Wall -Werror])
- AC_COMPILE_IFELSE(AC_LANG_SOURCE([int x;]), [
- AC_MSG_RESULT([yes])
- PLATFORM_CFLAGS="$PLATFORM_CFLAGS -Wall -Werror"
- ], [
- AC_MSG_RESULT([no])
- ])
- CFLAGS="$save_CFLAGS"
-
- dnl Paranoia for --enable-debug=full
- if test x"$enable_debug" = x"full"; then
- dnl Enable extensive debugging
- PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_ENABLE_DEBUG"
-
- dnl Use -O0 -g3 if the compiler supports it
- save_CFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS -O0 -g3"
- AC_MSG_CHECKING([whether $CC accepts -O0 -g3])
- AC_COMPILE_IFELSE(AC_LANG_SOURCE([int x;]), [
- AC_MSG_RESULT([yes])
- PLATFORM_CFLAGS="$PLATFORM_CFLAGS -O0 -g3"
- ], [
- AC_MSG_RESULT([no])
- ])
- CFLAGS="$save_CFLAGS"
- fi
-else
- dnl Print the result
- AC_MSG_RESULT([$enable_debug])
-
- dnl Disable debugging (release build)
- PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DNDEBUG"
-
- dnl Disable object cast checks
- PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_DISABLE_CAST_CHECKS"
-
- dnl Disable all checks for --enable-debug=no
- if test x"$enable_debug" = x"no"; then
- PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
- fi
-fi
-
+XDT_FEATURE_DEBUG([appfinder_debug_default])
+
+dnl **************************************
+dnl *** Check for linker optimizations ***
+dnl **************************************
+XDT_FEATURE_LINKER_OPTS()
+
+dnl *********************************
+dnl *** Substitute platform flags ***
+dnl *********************************
+AC_MSG_CHECKING([PLATFORM_CPPFLAGS])
+AC_MSG_RESULT([$PLATFORM_CPPFLAGS])
+AC_SUBST([PLATFORM_CPPFLAGS])
+AC_MSG_CHECKING([PLATFORM_CFLAGS])
+AC_MSG_RESULT([$PLATFORM_CFLAGS])
+AC_SUBST([PLATFORM_CFLAGS])
+AC_MSG_CHECKING([PLATFORM_LDFLAGS])
+AC_MSG_RESULT([$PLATFORM_LDFLAGS])
+AC_SUBST([PLATFORM_LDFLAGS])
AC_OUTPUT([
Makefile
diff --git a/po/ChangeLog b/po/ChangeLog
deleted file mode 100644
index 6a3aed7..0000000
--- a/po/ChangeLog
+++ /dev/null
@@ -1,830 +0,0 @@
-2009-08-08 Mike Massonnet <mmassonnet at xfce.org>
-
- * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-07-09 Mike Massonnet <mmassonnet at xfce.org>
-
- * ast.po: Asturian translation added (Marcos).
-
-2009-06-15 Gabor Kelemen <kelemeng at gnome.hu>
-
- * hu.po: Translation reworked.
-
-2009-05-29 Mike Massonnet <mmassonnet at xfce.org>
-
- * ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
- * ur.po: Urdu translation update (Muhammad Ali Makki)
-
-2009-05-11 Mike Massonnet <mmassonnet at xfce.org>
-
- * lv.po: Latvian translation update (Rihards Prieditis)
-
-2009-04-20 MiÈu Moldovan <dumol at xfce.org>
-
- * ro.po: Romanian translation update
-
-2009-04-20 Mike Massonnet <mmassonnet at xfce.org>
-
- * gl.po: Galician translation update (Leandro Regueiro)
- * it.po: Italian translation update (Cristian Cozzolino)
-
-2009-04-16 Mike Massonnet <mmassonnet at xfce.org>
-
- * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-30 Piotr SokóŠ<piotr.sokol at 10g.pl>
-
- * pl.po: Polish translation update
-
-2009-03-29 Maximilian Schleiss <maximilian at xfce.org>
-
- * es.po: Spanish translation update (Abel MartÃn)
-
-2009-03-27 Maximilian Schleiss <maximilian at xfce.org>
-
- * pt.po: Portuguese translation update (Nuno Miguel)
-
-2009-03-23 Piotr SokóŠ<piotr.sokol at 10g.pl>
-
- * pl.po: Polish translation update
-
-2009-03-14 Maximilian Schleiss <maximilian at xfce.org>
-
- * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-03-05 Mike Massonnet <mmassonnet at xfce.org>
-
- * pt.po: Renamed pt_PT.po to pt.po (bug #4574)
- * nb.po: Renamed nb_NO.po to nb.po (bug #4574)
-
-2009-03-02 Maximilian Schleiss <maximilian at xfce.org>
-
- * pt_PT: European Portuguese translation update (Nuno Miguel)
-
-2009-03-01 Maximilian Schleiss <maximilian at xfce.org>
-
- * es.po: Spanish translation update (Abel MartÃn)
- * pl.po: Polish translation update (Piotr SokóÅ)
-
-2009-02-20 Maximilian Schleiss <maximilian at xfce.org>
-
- * gl.po: Galician translation update (Leandro Regueiro)
-
-2009-02-07 Maximilian Schleiss <maximilian at xfce.org>
-
- * id.po: Indonesian translation update (Andhika Padmawan)
- * pl.po: Polish translation updated (Piotr SokóÅ)
-
-2009-02-03 Maximilian Schleiss <maximilian at xfce.org>
-
- * en_GB.po: British English translation update (Jeff Bailes)
-
-2009-01-31 Eren Türkay <erenturkay at xfce.org>
-
- * tr.po: Turkish translation update (Gökmen Görgen, Samed Beyribey)
-
-2009-01-26 Maximilian Schleiss <maximilian at xfce.org>
-
- * uk.po: Ukrainian translation udpate (Dmitry Nikitin)
-
-2009-01-25 Jannis Pohlmann <jannis at xfce.org>
-
- * *.po: Update translation files for the release.
-
-2009-01-23 Per Kongstad <pko at xfce.org>
-
- * da.po: Danish translation update (Per Kongstad)
-
-2009-01-21 Maximilian Schleiss <maximilian at xfce.org>
-
- * zh_CN.po: Simplified Chinese translation update (Chris K. Zhang)
-
-2009-01-19 Maximilian Schleiss <maximilian at xfce.org>
-
- * nb_NO.po: Norwegian Bokmal translation update (Terje Uriansrud)
-
-2009-01-18 Maximilian Schleiss <maximilian at xfce.org>
-
- * es.po: Spanish translation update (Abel MartÃn)
- * fr.po: French translation update (Jérôme Guelfucci)
- * ja.po: Japanese translation update (Masato Hashimoto)
-
-2009-01-18 Alexander Toresson <eulex at xfce.org>
-
- * sv.po: Swedish translation update (Daniel Nylander)
-
-2009-01-15 Og Maciel <ogmaciel at gnome.org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation.
-
-2009-01-15 Piarres Beobide <pi at beobide.net>
-
- * eu.po: Basque translation update
-
-2009-01-11 Maximilian Schleiss <maximilian at xfce.org>
-
- * ca.po: Catalan translation update (Carles Muñoz Gorriz)
-
-2009-01-11 Jannis Pohlmann <jannis at xfce.org>
-
- * xfce4-appfinder.pot, *.po: Update translation files so that they are
- up to date for the string-freeze release.
-
-2009-01-06 Stavros Giannouris <stavrosg at hellug.gr>
-
- * el.po: Greek translation update (Evaggelos Balaskas)
-
-2009-01-06 Stavros Giannouris <stavrosg at hellug.gr>
-
- * el.po: Greek translation update ()
-
-2009-01-03 Michal Várady <miko.vaji at gmail.com>
-
- * cs.po: Czech translation updated
-
-2009-01-02 Jari Rahkonen <jari.rahkonen at pp1.inet.fi>
-
- * fi.po: Update Finnish translation.
-
-2009-01-02 Jannis Pohlmann <jannis at xfce.org>
-
- * xfce4-mixer.pot, *.po: Update translation files.
- * de.po: Update German translations.
-
-2008-12-31 Michal Várady <miko.vaji at gmail.com>
-
- * cs.po: Czech translation fixed
-
-2008-12-25 Maximilian Schleiss <maximilian at xfce.org>
-
- * gl.po: Galician translation update (Leandro Regueiro)
- * zh_CN: Simplified Chinese translation update (Hunt Xu)
-
-2008-12-13 Alexander Toresson <eulex at xfce.org>
-
- * sv.po: Swedish translation update (Daniel Nylander)
-
-2008-12-12 Maximilian Schleiss <maximilian at xfce.org>
-
- * ja.po: Japanese translation update (Masato Hashimoto)
-
-2008-11-30 Lars Nielsen <lars at mit-web.dk>
-
- * da.po: updated danish translation (Per Kongstad)
-
-2008-11-25 Maximilian Schleiss <maximilian at xfce.org>
-
- * es.po: Spanish translation update (Abel MartÃn)
-
-2008-11-23 Maximilian Schleiss <maximilian at xfce.org>
-
- * ca.po: Catalan translation udpate (Carles Muñoz Gorriz)
- * uk.po: Ukrainian translation udpate (Dmitry Nikitin)
-
-2008-11-18 Alexander Nyakhaychyk <nyakhaychyk at gmail.com>
-
- * be.po: Belarusian translation updated
-
-2008-11-16 Maximilian Schleiss <maximilian at xfce.org>
-
- * ca.po: Catalan translation udpate (Carles Muñoz Gorriz)
- * de.po: German translation update (Fabian Nowak)
- * es.po: Spanish translation update (Abel MartÃn)
-
-2008-11-15 Eren Türkay <erenturkay at xfce.org>
-
- * tr.po: Turkish translation update (Gökmen Görgen)
-
-2008-11-11 Piarres Beobide <pi at beobide.net>
-
- * eu.po: Basque translation update
-
-2008-11-10 Maximilian Schleiss <maximilian at xfce.org>
-
- * ku.po; LINGUAS: Kurdish translation added (Erdal Ronahi)
-
-2008-11-02 Maximilian Schleiss <maximilian at xfce.org>
-
- * es.po: Spanish translation update (Abel MartÃn)
- * tr.po: Turkish translation update (Gökmen Görgen)
-
-2008-10-20 Maximilian Schleiss <maximilian at xfce.org>
-
- * ca.po: Catalan translation update (Carles Muñoz Gorriz)
-
-2008-10-18 Maximilian Schleiss <maximilian at xfce.org>
-
- * es.po: Spanish translation update (Abel Martin)
- * fr.po: French translation update
- * id.po: Indonesian translation update (Andhika Padmawan)
- * nb_NO.po, LINGUAS: Norwegian Bokmal translation added (Terje Uriansrud)
-
-2008-10-12 Piarres Beobide <pi at beobide.>
-
- * eu.po: Basque translation update
-
-2008-10-07 Maximilian Schleiss <maximilian at xfce.org>
-
- * ja.po: Japanese translation update (Masato Hashimoto)
- * si.po: Sinhalese translation update (Rashan Anushka)
-
-2008-10-07 Jari Rahkonen <jari.rahkonen at pp1.inet.fi>
-
- * fi.po: Update Finnish translation.
-
-2008-10-05 Og Maciel <ogmaciel at gnome.org>
-
- * pt_BR.po: Updated Brazilian Portuguese translation by Fábio Nogueira.
-
-2008-10-05 Maximilian Schleiss <maximilian at xfce.org>
-
- * es.po: Spanish translation updated (Abel MartÃn)
-
-2008-09-08 Maximilian Schleiss <maximilian at xfce.org>
-
- * id.po: Indonesian translation update (Andhika Padmawan)
- * fr.po: French translation update
-
-2008-08-29 Maximilian Schleiss <maximilian at xfce.org>
-
- * de.po: German translation updated (Fabian Nowak)
-
-2008-08-28 Piarres Beobide <pi at beobide.net>
-
- * eu.po: Updated Basque translation.
-
-2008-08-12 Jari Rahkonen <jari.rahkonen at pp1.inet.fi>
-
- * fi.po: Updated Finnish translation
-
-2008-08-10 Maximilian Schleiss <maximilian at xfce.org>
-
- * ko.po: Korean translation updated (ByungHyun Choi)
- * pl.po: Polish translation updated (Piotr MaliÅski)
-
-2008-07-27 Og Maciel <ogmaciel at gnome.org>
-
- * pt_BR.po: Brazilian Portuguese translation updated by
- Fábio Nogueira <deb-user-ba at ubuntu.com>.
-
-2008-07-15 Maximilian Schleiss <maximilian at xfce.org>
-
- * gl.po: Galician translation updated (Leandro Regueiro)
-
-2008-06-26 Maximilian Schleiss <maximilian at xfce.org>
-
- * gl.po: Galician translation updated (Leandro Regueiro)
-
-2008-06-22 Mike Massonnet <mmassonnet at xfce.org>
-
- * id.po, LINGUAS: Add Indonesian translation (Andhika Padmawan)
-
-2008-05-27 Eren Türkay <erenturkay at xfce.org>
-
- * tr.po: Update Turkish translation
-
-2008-05-27 Mike Massonnet <mmassonnet at xfce.org>
-
- * da.po, LINGUAS: Add Danish translation (Ole Guldberg Jensen)
- * ja.po: Update Japanese translation (Nobuhiro Iwamatsu)
-
-2008-05-13 Mike Massonnet <mmassonnet at xfce.org>
-
- * en_GB.po: Update translation (Jeff Bailes)
-
-2008-05-03 Piarres Beobide <pi at beobide.net>
-
- * eu.po: Basque translation update.
-
-2008-04-12 Mike Massonnet <mmassonnet at xfce.org>
-
- * lv.po: Update Latvian translation (Rihards Prieditis <rprieditis at gmail.com>)
-
-2008-03-18 Mike Massonnet <mmassonnet at xfce.org>
-
- * pt_PT.po: Update Portuguese translation by Nuno Miguel
-
-2008-03-18 Mike Massonnet <mmassonnet at xfce.org>
-
- * ca.po: Update Catalan translation by Carles Muñoz Gorriz
- <carlesmu at ya.com>
-
-2008-03-12 Jean-François Wauthy <pollux at xfce.org>
- * de.po: Update German translations by Enrico Tröger
- <enrico.troeger at uvena.de>
-
-2008-03-05 Mike Massonnet <mmassonnet at xfce.org>
-
- * am.po: Update Amharic translation
-
-2008-02-27 Og Maciel <ogmaciel at gnome.org>
-
- * pt_BR.po: Brazilian Portuguese translation updated by
- Fábio Nogueira <deb-user-ba at ubuntu.com>.
-
-2008-02-15 Mike Massonnet <mmassonnet at xfce.org>
-
- * si.po: Merge from Xfce 4.4 branch (r26612)
-
-2008-02-15 Mike Massonnet <mmassonnet at xfce.org>
-
- * *.po, *.pot: make update-po, add initial pot file
-
-2008-01-07 Jari Rahkonen <jari.rahkonen at pp1.inet.fi>
-
- * fi.po: Updated Finnish translation
-
-2008-01-05 Mike Massonnet <mmassonnet at xfce.org>
-
- * fr.po: Update translations, and happy new year
-
-2007-12-23 Jean-François Wauthy <pollux at xfce.org>
-
- * pt_PT.po: Updated Portuguese translations by Nuno Miguel
- <nunis at netcabo.pt>
-
-2008-11-15 Mike Massonnet <mmassonnet at xfce.org>
-
- * ur.po, LINGUAS: Add Urdu translation by ﻢﺤﻣﺩ ï»ï» ﻳ ïºï» ﻤï»ï»³
- makki.ma at gmail.com
-
-2008-11-11 Mike Massonnet <mmassonnet at xfce.org>
-
- * lv.po: Update translations by RPrieditis <RPrieditis at inbox.lv>
-
-2008-09-24 Mike Massonnet <mmassonnet at xfce.org>
-
- * LINGUAS, lv.po: Add Latvian translation by RPrieditis
- <RPrieditis at inbox.lv>
-
-2008-09-06 Maximilian Schleiss <maximilian at xfce.org>
-
- * am.po: Added a long waiting Amharic translation
- by Tegegne Tefera <tefera at mekuria.com>
-
-2008-06-27 Maximilian Schleiss <maximilian at xfce.org>
-
- * pt_PT.po: European Portuguese translation update
- by Nuno Miguel <nunis at netcabo.pt>
-
-2008-04-05 Pau Rul-lan Ferragut <paurullan at bulma.net>
-
- * ca.po: Update Catalan translations
-
-2008-03-28 Maximilian Schleiss <maximilian at xfce.org>
-
- * de.po: Minor fixes to the German translation
- by Nico Schümann <nico at prog.nico22.de>
- * en_GB.po: Updated the British translation
- by Jeff Bailes <thepizzaking at gmail.com>
-
-2008-03-25 Daichi Kawahata <daichi at xfce.org>
-
- * gl.po: Fixed header.
- * mk.po: Removed executable attribute.
-
-2008-03-18 Eren Turkay <erenturkay at xfce.org>
-
- * tr.po: Updated the Turkish translation.
-
-2008-02-10 Maximilian Schleiss <maximilian at xfce.org>
-
- * Modified LINGUAS files to include Albanian language,
- verified all the LINGUAS files.
-
-2008-02-09 Mohamed Magdy <mohamed.m.k at gmail.com>
-
- * ar.po: initial commit.
- * LINGUAS: adding ar language code
-
-2008-01-24 Maximilian Schleiss <maximilian at xfce.org>
-
- * sq.po: Added the Albanian translation by
- Besnik Bleta <besnik at programeshqip.org>
-
-2008-01-21 Maximilian Schleiss <maximilian at xfce.org>
-
- * ro.po: Updated the Romanian translation by
- MiÅu Moldovan <dumol at gnome.ro>
-
-2008-01-19 Alexander Nyakhaychyk <nyakhaychyk at gmail.com>
-
- * be.po: Updated Belarusian Translation
-
-2008-01-18 Alexander Toresson <alexander.toresson at gmail.com>
-
- * sv.po: Updated Swedish translation.
-
-2006-12-25 Maximilian Schleiss <maximilian at xfce.org>
-
- * mk.po: Added the Macedonian translation by
- Jovan Naumovski <jovan at lugola.net>
-
-2006-10-28 Pau Rul-lan Ferragut <paurullan at bulma.net>
-
- * dz.po: add Dzongkha translation by Dzongkha team
- Tenzin <tdendup at dit.gov.bt>
-
-2006-10-02 Pau Rul-lan Ferragut <paurullan at bulma.net>
-
- * ru.po: Updated Russian translations by Andrey Fedoseev
- <andrey.fedoseev at gmail.com>
-
-2006-09-08 Sylvain Vedrenne <gnu_sylvain at xfce.org>
-
- * eo.po: Esperanto translations: fixed one fuzzy mark.
-
-2006-09-02 Benedikt Meurer <benny at xfce.org>
-
- * de.po: Updated German translations by Enrico Tröger
- <enrico.troeger at uvena.de>.
-
-2006-08-27 Jean-François Wauthy <pollux at xfce.org>
-
- * ka.po: Add Georgian translations
-
-2006-08-20 Jean-François Wauthy <pollux at xfce.org>
-
- * gl.po: Add Galician translations
-
-2006-07-30 Jean-François Wauthy <pollux at xfce.org>
-
- * cs.po: Updated Czech translations by Michal Varady
- <miko.vaji at gmail.com>
-
-2006-07-22 Sylvain Vedrenne <gnu_sylvain at xfce.org>
-
- * eo.po: Updated Esperanto translations.
-
-2006-07-19 Sylvain Vedrenne <gnu_sylvain at xfce.org>
-
- * LINGUAS, eo.po: New language eo, Esperanto translations
- from Jarbas Araujo Jr. <jarbasaraujojr at yahoo.com.br>
-
-2006-06-12 Hydonsingore Cia <hydonsingore at educities.edu.tw>
-
- * zh_TW.po: Modify the translator's e-mail address.
-
-2006-06-03 Alexander Toresson <alexander.toresson at gmail.com>
-
- * sv.po: Updated Swedish translation.
-
-2006-05-07 Daichi Kawahata <daichi at xfce.org>
-
- * cs.po: Updated Czech translations by Michal Varady
- <miko.vaji at gmail.com>.
-
-2006-05-02 Hydonsingore Cia <hydonsingore at mail.educities.edu.tw>
-
- * zh_TW.po: Minor update on zh_TW translations.
-
-2006-04-28 Hydonsingore Cia <hydonsingore at mail.educities.edu.tw>
-
- * zh_TW.po: Updated traditional Chinese translations.
-
-2006-01-15 Pau Rullan Ferragut <paurullan at bulma.net>
-
- * ca.po: some work on catalan translation (trunk)
-
-2006-01-13 Daichi Kawahata <daichi at xfce.org>
-
- * pl.po: Updated Polish translations by Piotr Malinski
- <riklaunim at gmail.com>.
-
-2006-01-11 Daichi Kawahata <daichi at xfce.org>
-
- * ca.po, ca.po: Fixed an error.
-
-2006-01-08 Pau Rullan Ferragut <paurullan at bulma.net>
-
- * ca.po: new file created
-
-2006-01-07 Daichi Kawahata <daichi at xfce.org>
-
- * el.po, eu.po, pt_BR.po, uk.po: Updated copyright information.
-
-2005-12-21 Daichi Kawahata <daichi at xfce.org>
-
- * pt_BR.po: Updated Brazilian Portuguese translations by Adriano
- Winter Bess <awbess at gmail.com>.
-
-2005-11-28 Daichi Kawahata <daichi at xfce.org>
-
- * ChangeLog: Updated.
-
-2005-11-21 Daichi Kawahata <daichi at xfce.org>
-
- * be.po, bn_IN.po, cs.po, de.po, en_GB.po, es.po, es_MX.po, et.po,
- eu.po, fa.po, fi.po, fr.po, gu.po, he.po, hy.po, it.po, ja.po,
- ko.po, lt.po, mr.po, nl.po, pa.po, pl.po, pt_BR.po, pt_PT.po,
- ro.po, ru.po, sv.po, tr.po, uk.po, xfce4-appfinder.pot,
- zh_CN.po, zh_TW.po: Updated.
-
-2005-11-21 Stavros Giannouris <stavrosg at serverhive.com>
-
- * el.po: Added Greek translation
-
-2005-11-21 Daichi Kawahata <daichi at xfce.org>
-
- * POTFILES.in: Updated POTFILES.in file.
-
-2005-11-07 Daichi Kawahata <daichi at xfce.org>
-
- * es.po: Updated Spanish translations by Rudy Godoy
- <rudy at kernel-panik.org>.
-
-2005-11-05 Daichi Kawahata <daichi at xfce.org>
-
- * ChangeLog: Deciphering.
-
-2005-11-05 Daichi Kawahata <daichi at xfce.org>
-
- * ChangeLog: Trimmed and updated.
-
-2005-11-03 Daichi Kawahata <daichi at xfce.org>
-
- * ko.po: Updated Korean translations by ByungHyun Choi
- <byunghyun.choi at gmail.com>.
-
-2005-10-30 Daichi Kawahata <daichi at xfce.org>
-
- * xfce4-appfinder.pot: Added again, because it requires for
- translators who are grabbing PO files from `trunk-po' module,
- without POT file, it's hard to create initial PO file from
- command line (e.g. msginit) or with GUI tools (e.g. KBabel,
- poEdit).
-
-2005-10-29 Daichi Kawahata <daichi at xfce.org>
-
- * fr.po: Updated French translations by Collet Etienne
- <xanaxlnx at gmail.com>.
-
-2005-10-23 Piarres Beobide <pi at beobide.net>
-
- * ChangeLog, eu.po: BAsque translation update
-
-2005-10-20 Alex Dupre <ale at FreeBSD.org>
-
- * it.po: Update Italian translations.
-
-2005-10-19 Daichi Kawahata <daichi at xfce.org>
-
- * lt.po: Changed addresses.
-
-2005-10-16 Daichi Kawahata <daichi at xfce.org>
-
- * be.po, bn_IN.po, cs.po, de.po, en_GB.po, es.po, es_MX.po, et.po,
- eu.po, fa.po, fi.po, fr.po, gu.po, he.po, hy.po, it.po, ja.po,
- ko.po, lt.po, mr.po, nl.po, pa.po, pl.po, pt_BR.po, pt_PT.po,
- ro.po, ru.po, sv.po, tr.po, uk.po, zh_CN.po, zh_TW.po: Updated.
-
-2005-10-15 Daichi Kawahata <daichi at xfce.org>
-
- * be.po, bn_IN.po, cs.po, de.po, en_GB.po, es.po, es_MX.po, et.po,
- eu.po, fa.po, fi.po, fr.po, gu.po, he.po, hy.po, it.po, ja.po,
- ko.po, lt.po, mr.po, nl.po, pa.po, pl.po, pt_BR.po, pt_PT.po,
- ro.po, ru.po, sv.po, tr.po, uk.po, zh_CN.po, zh_TW.po: Updated.
-
-2005-10-14 Daichi Kawahata <daichi at xfce.org>
-
- * ja.po: Minor update.
-
-2005-10-14 Daichi Kawahata <daichi at xfce.org>
-
- * be.po, bn_IN.po, cs.po, de.po, en_GB.po, es.po, es_MX.po, et.po,
- eu.po, fa.po, fi.po, fr.po, gu.po, he.po, hy.po, it.po, ja.po,
- ko.po, lt.po, mr.po, nl.po, pa.po, pl.po, pt_BR.po, pt_PT.po,
- ro.po, ru.po, sv.po, tr.po, uk.po, zh_CN.po, zh_TW.po: Added
- fallback address. Modified initial header/comment strings.
- Discarded obsolete translations.
-
-2005-10-14 Jasper Huijsmans <jasper at xfce.org>
-
- * POTFILES.in, be.po, bn_IN.po, cs.po, de.po, en_GB.po, es.po,
- es_MX.po, et.po, eu.po, fa.po, fi.po, fr.po, gu.po, he.po,
- hy.po, it.po, ja.po, ko.po, lt.po, mr.po, nl.po, pa.po, pl.po,
- pt_BR.po, pt_PT.po, ro.po, ru.po, sv.po, tr.po, uk.po,
- xfce4-appfinder.pot, zh_CN.po, zh_TW.po: Use inttool for
- .desktop file.
-
-2005-09-09 Daichi Kawahata <daichi at xfce.org>
-
- * zh_TW.po: Changed translator's representation in spelling by
- the request.
-
-2005-08-18 Daichi Kawahata <daichi at xfce.org>
-
- * ja.po: Updated Japanese translations.
-
-2005-08-17 Daichi Kawahata <daichi at xfce.org>
-
- * lt.po: Fixed errors. Modified initial comment strings.
-
-2005-08-17 Daichi Kawahata <daichi at xfce.org>
-
- * en_GB.po, es.po, es_MX.po, it.po, nl.po, pt_BR.po, zh_CN.po:
- Fixed errors. Converted local charset to UTF-8. Added fallback
- address. Modified initial comment strings.
-
-2005-08-13 Daichi Kawahata <daichi at xfce.org>
-
- * fi.po: Updated Finnish translations by Jari Rahkonen
- <jari.rahkonen at pp2.inet.fi>.
-
-2005-08-04 Jean-Francois Wauthy <pollux at xfce.org>
-
- * hy.po: add some HY translations
-
-2005-07-28 Jean-Francois Wauthy <pollux at xfce.org>
-
- * ja.po: update JA translations
-
-2005-07-06 Jean-Francois Wauthy <pollux at xfce.org>
-
- * zh_TW.po: update zh_TW translations
-
-2005-07-04 Jean-Francois Wauthy <pollux at xfce.org>
-
- * ko.po: update KO translations
-
-2005-05-17 Eduard Roccatello <eduard at xfce.org>
-
- * POTFILES.in: Sorting items into treeview by name
-
-2005-05-14 Olivier Fourdan <fourdan at xfce.org>
-
- * ChangeLog: Update ChangeLog
-
-2005-05-06 Jean-Francois Wauthy <pollux at xfce.org>
-
- * bn_IN.po: add bn_IN translations
-
-2005-05-06 Jean-Francois Wauthy <pollux at xfce.org>
-
- * mr.po: add MR translations
-
-2005-05-04 Olivier Fourdan <fourdan at xfce.org>
-
- * ChangeLog: Update ChangeLog
-
-2005-04-12 Jasper Huijsmans <jasper at xfce.org>
-
- * Makefile.in.in, be.gmo, cs.gmo, de.gmo, en_GB.gmo, es.gmo,
- es_MX.gmo, et.gmo, eu.gmo, fa.gmo, fi.gmo, gu.gmo, he.gmo,
- it.gmo, ko.gmo, lt.gmo, nl.gmo, pa.gmo, pt_BR.gmo, pt_PT.gmo,
- ro.gmo, ru.gmo, tr.gmo, uk.gmo, zh_CN.gmo: Remove generated
- files
-
-2005-04-08 Jean-Francois Wauthy <pollux at xfce.org>
-
- * sv.po: add SV translations
-
-2005-03-04 Jean-Francois Wauthy <pollux at xfce.org>
-
- * pl.po: add PL translations
-
-2005-02-21 Jean-Francois Wauthy <pollux at xfce.org>
-
- * ja.po: update JA translations
-
-2005-01-22 Jean-Francois Wauthy <pollux at xfce.org>
-
- * fi.gmo, fi.po: update FI translations
-
-2005-01-08 Jean-Francois Wauthy <pollux at xfce.org>
-
- * ru.gmo, ru.po: update RU translations
-
-2005-01-06 Jean-Francois Wauthy <pollux at xfce.org>
-
- * uk.gmo, uk.po: update UK translations
-
-2005-01-05 Jean-Francois Wauthy <pollux at xfce.org>
-
- * he.gmo, he.po: update HE translations
-
-2005-01-02 Olivier Fourdan <fourdan at xfce.org>
-
- * xfce4-appfinder.pot: Update version and changelog
-
-2004-12-23 Jean-Francois Wauthy <pollux at xfce.org>
-
- * et.gmo, et.po: update ET translations
-
-2004-12-21 Brian Tarricone <kelnos at xfce.org>
-
- * cs.gmo, cs.po: add/update czech translations
-
-2004-12-15 Jean-Francois Wauthy <pollux at xfce.org>
-
- * pt_BR.gmo, pt_BR.po: update pt_BR translations
-
-2004-12-14 Jean-Francois Wauthy <pollux at xfce.org>
-
- * ro.gmo, ro.po: add RO translations
-
-2004-12-11 Olivier Fourdan <fourdan at xfce.org>
-
- * xfce4-appfinder.pot: Various changes and small fixes
-
-2004-12-05 Jean-Francois Wauthy <pollux at xfce.org>
-
- * en_GB.gmo, en_GB.po: add en_GB translations
-
-2004-11-28 Jean-Francois Wauthy <pollux at xfce.org>
-
- * tr.gmo, tr.po: update TR translations
-
-2004-11-26 Jean-Francois Wauthy <pollux at xfce.org>
-
- * ko.gmo, ko.po: update KO translations
-
-2004-10-30 Jean-Francois Wauthy <pollux at xfce.org>
-
- * lt.gmo, lt.po: update LT translations
-
-2004-10-28 Jean-Francois Wauthy <pollux at xfce.org>
-
- * he.gmo, he.po: update HE translations
-
-2004-10-14 Jean-Francois Wauthy <pollux at xfce.org>
-
- * be.gmo, de.gmo, eu.gmo, fi.gmo, fi.po, gu.gmo, it.gmo, nl.gmo,
- pa.gmo, zh_CN.gmo: update FI translations
-
-2004-10-11 Benedikt Meurer <benny at xfce.org>
-
- * be.po, de.po, eu.po, gu.po, it.po, nl.po, pa.po,
- xfce4-appfinder.pot, zh_CN.po: update-po for Moe.
-
-2004-10-10 Jean-Francois Wauthy <pollux at xfce.org>
-
- * pt_PT.gmo, pt_PT.po: update pt_PT translations
-
-2004-10-09 Jean-Francois Wauthy <pollux at xfce.org>
-
- * fa.gmo, fa.po: update FA translations
-
-2004-10-08 Edscott Wilson Garcia <edscott at xfce.org>
-
- * es.gmo, es.po, es_MX.gmo, es_MX.po: add spanish language
- translations
-
-2004-10-03 Jean-Francois Wauthy <pollux at xfce.org>
-
- * pa.gmo, pa.po: Punjabi translations (PA) from
- jaswinderlinux at netscape.net
-
-2004-10-02 Olivier Fourdan <fourdan at xfce.org>
-
- * xfce4-appfinder.pot: Update all files for 4.2 beta 1
-
-2004-09-29 Jean-Francois Wauthy <pollux at xfce.org>
-
- * zh_CN.gmo, zh_CN.po: updated zh_CN translations from yongtao
- yang <yongtao.yang at gmail.com>
-
-2004-09-23 Jean-Francois Wauthy <pollux at xfce.org>
-
- * gu.gmo, gu.po: add Gujarati translations (GU) from Ankit Patel
- <ankit at redhat.com>
-
-2004-09-21 Jasper Huijsmans <jasper at xfce.org>
-
- * be.gmo, be.po, de.gmo, de.po, eu.gmo, eu.po, it.gmo, it.po,
- nl.gmo, nl.po: Run make update-po at Moe's request.
-
-2004-09-19 Jasper Huijsmans <jasper at xfce.org>
-
- * nl.gmo, nl.po: Update nl translations
-
-2004-09-18 Jean-Francois Wauthy <pollux at xfce.org>
-
- * eu.gmo, eu.po: update EU translations
-
-2004-09-18 Moritz Heiber <moe at xfce.org>
-
- * de.gmo, de.po: Adding German translation
-
-2004-09-16 Jean-Francois Wauthy <pollux at xfce.org>
-
- * be.gmo, be.po: add BE translations from Ales Nyakhaychyk
- <nab at mail.by>
-
-2004-08-24 Eduard Roccatello <eduard at xfce.org>
-
- * Makefile.in.in, xfce4-appfinder.pot: make dist/rpm fixes
-
-2004-07-26 Eduard Roccatello <eduard at xfce.org>
-
- * it.gmo, it.po: Directory recursion added
-
-2004-07-18 Eduard Roccatello <eduard at xfce.org>
-
- * it.po: i18n fixes
-
-2004-07-18 Eduard Roccatello <eduard at xfce.org>
-
- * ChangeLog, Makefile.in.in, POTFILES.in, it.gmo, it.po,
- xfce4-appfinder.pot: po files
-
diff --git a/po/LINGUAS b/po/LINGUAS
deleted file mode 100644
index 8f1b34e..0000000
--- a/po/LINGUAS
+++ /dev/null
@@ -1,2 +0,0 @@
-# set of available languages (in alphabetic order)
-am ar ast be bn_IN ca cs da de dz el en_GB eo es es_MX et eu fa fi fr gl gu he hu hy id it ja ka ko ku lt lv mk mr nb nl pa pl pt pt_BR ro ru si sk sq sv tr uk ur ur_PK zh_CN zh_TW
More information about the Xfce4-commits
mailing list