Update of /cvsroot/gqclient/gq
In directory usw-pr-cvs1:/tmp/cvs-serv24332
Modified Files:
configure.in README.NLS
Log Message:
* Added support for singular/plural forms when translating messages including
numbers.
* Added support for the japanese Message catalog kindly provided by
Hatuka*nezumi <ne...@jc...>. The original patch I received from Hatuka
contained also some fogotten "_()"s. Thanks.
Index: configure.in
===================================================================
RCS file: /cvsroot/gqclient/gq/configure.in,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** configure.in 15 Jul 2002 18:36:51 -0000 1.36
--- configure.in 18 Sep 2002 07:22:04 -0000 1.37
***************
*** 235,240 ****
dnl gettext support
! ALL_LINGUAS="de"
AM_GNU_GETTEXT
dnl we have no access to the information from AM_GNU_GETTEXT. Use a
--- 235,241 ----
dnl gettext support
! ALL_LINGUAS="de ja"
AM_GNU_GETTEXT
+ dnl AM_WITH_NLS(,need-ngettext)
dnl we have no access to the information from AM_GNU_GETTEXT. Use a
Index: README.NLS
===================================================================
RCS file: /cvsroot/gqclient/gq/README.NLS,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** README.NLS 13 Jun 2002 10:11:26 -0000 1.1
--- README.NLS 18 Sep 2002 07:22:04 -0000 1.2
***************
*** 1,2 ****
--- 1,18 ----
+ Singular/plural
+ ---------------
+
+ Support for singular/plural forms when translating messages containing
+ numbers has been added in Sept. 2002. This requires the use of a
+ sufficiently nuew gettext implementation. The implementation included
+ with gq is sufficient. You might need to use the
+ --with-included-gettext option if your gettext does not support the
+ ngettext function.
+
+ Read the gettext ddocumentation to find out how to support ngettext
+ with your language.
+
+ Regarding the introduction of new translations
+ ----------------------------------------------
+
After discussions with Bert it was decided to add support for
Internationalization (I18N). It was decided to require the following
***************
*** 10,12 ****
--- 26,29 ----
Changes to the CVS repository should be checked for required
translation related activity and should lead to updated po files
+
|