[Python-checkins] python/dist/src/Doc/lib libgettext.tex,1.23,1.24

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Sat Jul 10 18:01:12 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14910

Modified Files:
	libgettext.tex 
Log Message:
[Bug 949832] Fix example; edit sentence

Index: libgettext.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libgettext.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** libgettext.tex	8 Jan 2004 15:01:08 -0000	1.23
--- libgettext.tex	10 Jul 2004 16:01:10 -0000	1.24
***************
*** 119,124 ****
  implements the parsing of GNU \file{.mo} format files, and has methods
  for returning either standard 8-bit strings or Unicode strings.
! Translations instances can also install themselves in the built-in
! namespace as the function \function{_()}.
  
  \begin{funcdesc}{find}{domain\optional{, localedir\optional{, 
--- 119,124 ----
  implements the parsing of GNU \file{.mo} format files, and has methods
  for returning either standard 8-bit strings or Unicode strings.
! Instances of this ``translations'' class can also install themselves 
! in the built-in namespace as the function \function{_()}.
  
  \begin{funcdesc}{find}{domain\optional{, localedir\optional{, 
***************
*** 366,370 ****
      'There is %(num)d file in this directory',
      'There are %(num)d files in this directory',
!     n) % {'n': n}
  \end{verbatim}
  
--- 366,370 ----
      'There is %(num)d file in this directory',
      'There are %(num)d files in this directory',
!     n) % {'num': n}
  \end{verbatim}
  



More information about the Python-checkins mailing list