[Commits] ABOUT-NLS NONE 1.1.2.1 ChangeLog 1.7.2.43 1.7.2.44 Makefile.am 1.3.2.3 1.3.2.4 PATCHSETS 1.1.2.23 1.1.2.24 configure.ac 1.7.2.49 1.7.2.50

ticho at claws-mail.org ticho at claws-mail.org
Wed Jan 4 20:17:47 CET 2012


Update of /home/claws-mail/plugins/fetchinfo
In directory claws-mail:/tmp/cvs-serv12965

Modified Files:
      Tag: gtk2
	ChangeLog Makefile.am PATCHSETS configure.ac 
Added Files:
      Tag: gtk2
	ABOUT-NLS 
Log Message:
2012-01-04 [ticho]	0.4.24cvs2

	* ABOUT-NLS
	* Makefile.am
	* configure.ac
	* config/config.rpath
	* po/Makefile.in.in
	* po/Makevars
	* po/POTFILES.in
	* po/remove-potcdate.sed
	* src/fetchinfo_plugin.c
	* src/fetchinfo_plugin_gtk.c
	* src/gettext.h
		Added internationalization support. 

--- NEW FILE: ABOUT-NLS ---
1 Notes on the Free Translation Project
***************************************

Free software is going international!  The Free Translation Project is
a way to get maintainers of free software, translators, and users all
together, so that free software will gradually become able to speak many
languages.  A few packages already provide translations for their
messages.

   If you found this `ABOUT-NLS' file inside a distribution, you may
assume that the distributed package does use GNU `gettext' internally,
itself available at your nearest GNU archive site.  But you do _not_
need to install GNU `gettext' prior to configuring, installing or using
this package with messages translated.

   Installers will find here some useful hints.  These notes also
explain how users should proceed for getting the programs to use the
available translations.  They tell how people wanting to contribute and
work on translations can contact the appropriate team.
[...1243 lines suppressed...]

1.5 Using `gettext' in new packages
===================================

If you are writing a freely available program and want to
internationalize it you are welcome to use GNU `gettext' in your
package.  Of course you have to respect the GNU Library General Public
License which covers the use of the GNU `gettext' library.  This means
in particular that even non-free programs can use `libintl' as a shared
library, whereas only free software can use `libintl' as a static
library or use modified versions of `libintl'.

   Once the sources are changed appropriately and the setup can handle
the use of `gettext' the only thing missing are the translations.  The
Free Translation Project is also available for packages which are not
developed inside the GNU project.  Therefore the information given above
applies also for every other Free Software Project.  Contact
`coordinator at translationproject.org' to make the `.pot' files available
to the translation teams.


Index: configure.ac
===================================================================
RCS file: /home/claws-mail/plugins/fetchinfo/configure.ac,v
retrieving revision 1.7.2.49
retrieving revision 1.7.2.50
diff -u -d -r1.7.2.49 -r1.7.2.50
--- configure.ac	2 Jan 2012 18:21:48 -0000	1.7.2.49
+++ configure.ac	4 Jan 2012 19:17:45 -0000	1.7.2.50
@@ -8,7 +8,7 @@
 MAJOR_VERSION=0
 MINOR_VERSION=4
 MICRO_VERSION=24
-EXTRA_VERSION=1
+EXTRA_VERSION=2
 
 if test \( $EXTRA_VERSION -eq 0 \); then
     if test \( $MICRO_VERSION -eq 0 \); then
@@ -60,6 +60,9 @@
   AC_MSG_ERROR([*** pkg-config not found. See http://www.freedesktop.org/software/pkgconfig/])
 fi
 
+AM_GNU_GETTEXT_VERSION([0.15])
+AM_GNU_GETTEXT([external])
+
 #
 # Check for claws-mail
 #
@@ -95,5 +98,6 @@
 
 AC_OUTPUT([
 Makefile
+po/Makefile.in
 src/Makefile
 ])

Index: Makefile.am
===================================================================
RCS file: /home/claws-mail/plugins/fetchinfo/Makefile.am,v
retrieving revision 1.3.2.3
retrieving revision 1.3.2.4
diff -u -d -r1.3.2.3 -r1.3.2.4
--- Makefile.am	24 Jul 2005 05:39:46 -0000	1.3.2.3
+++ Makefile.am	4 Jan 2012 19:17:45 -0000	1.3.2.4
@@ -1,9 +1,13 @@
-SUBDIRS = src
+SUBDIRS = po src
 
-EXTRA_DIST = \
+EXTRA_DIST =
+	config/config.rpath \
+	ABOUT-NLS \
 	COPYING \
 	INSTALL \
 	README \
 	ChangeLog \
 	autogen.sh
 
+
+ACLOCAL_AMFLAGS = -I m4

Index: PATCHSETS
===================================================================
RCS file: /home/claws-mail/plugins/fetchinfo/Attic/PATCHSETS,v
retrieving revision 1.1.2.23
retrieving revision 1.1.2.24
diff -u -d -r1.1.2.23 -r1.1.2.24
--- PATCHSETS	2 Jan 2012 18:21:48 -0000	1.1.2.23
+++ PATCHSETS	4 Jan 2012 19:17:45 -0000	1.1.2.24
@@ -21,3 +21,4 @@
 ( cvs diff -u -r 1.7.2.42 -r 1.7.2.43 configure.ac;  cvs diff -u -r 1.1.2.4 -r 1.1.2.5 src/fetchinfo_plugin.h;  cvs diff -u -r 1.3.2.12 -r 1.3.2.13 src/fetchinfo_plugin_gtk.c;  ) > 0.4.22cvs3.patchset
 ( cvs diff -u -r 1.7.2.45 -r 1.7.2.46 configure.ac;  ) > 0.4.23cvs1.patchset
 ( cvs diff -u -r 1.3.2.13 -r 1.3.2.14 src/fetchinfo_plugin_gtk.c;  ) > 0.4.24cvs1.patchset
+( diff -u /dev/null ABOUT-NLS;  cvs diff -u -r 1.3.2.3 -r 1.3.2.4 Makefile.am;  cvs diff -u -r 1.7.2.49 -r 1.7.2.50 configure.ac;  diff -u /dev/null config/config.rpath;  diff -u /dev/null po/Makefile.in.in;  diff -u /dev/null po/Makevars;  diff -u /dev/null po/POTFILES.in;  diff -u /dev/null po/remove-potcdate.sed;  cvs diff -u -r 1.4.2.17 -r 1.4.2.18 src/fetchinfo_plugin.c;  cvs diff -u -r 1.3.2.14 -r 1.3.2.15 src/fetchinfo_plugin_gtk.c;  diff -u /dev/null src/gettext.h;  ) > 0.4.24cvs2.patchset

Index: ChangeLog
===================================================================
RCS file: /home/claws-mail/plugins/fetchinfo/ChangeLog,v
retrieving revision 1.7.2.43
retrieving revision 1.7.2.44
diff -u -d -r1.7.2.43 -r1.7.2.44
--- ChangeLog	2 Jan 2012 18:21:48 -0000	1.7.2.43
+++ ChangeLog	4 Jan 2012 19:17:45 -0000	1.7.2.44
@@ -1,3 +1,18 @@
+2012-01-04 [ticho]	0.4.24cvs2
+
+	* ABOUT-NLS
+	* Makefile.am
+	* configure.ac
+	* config/config.rpath
+	* po/Makefile.in.in
+	* po/Makevars
+	* po/POTFILES.in
+	* po/remove-potcdate.sed
+	* src/fetchinfo_plugin.c
+	* src/fetchinfo_plugin_gtk.c
+	* src/gettext.h
+		Added internationalization support.
+
 2012-01-02 [ticho]	0.4.24cvs1
 
 	* src/fetchinfo_plugin_gtk.c



More information about the Commits mailing list