Update of /cvsroot/freevo/freevo/src
In directory sc8-pr-cvs1:/tmp/cvs-serv3906/src

Modified Files:
        directory.py 
Log Message:
Please don't use:
    _( "string A" + \
       "string B" )

 that sucks translation, cause it's split in 2 separate strings. 
Instead, use this:

    _( "string A" \
       "string B" )
  


Index: directory.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/directory.py,v
retrieving revision 1.60
retrieving revision 1.61
diff -C2 -d -r1.60 -r1.61
*** directory.py        21 Nov 2003 11:48:03 -0000      1.60
--- directory.py        22 Nov 2003 02:31:15 -0000      1.61
***************
*** 10,13 ****
--- 10,24 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.61  2003/11/22 02:31:15  gsbarbieri
+ # Please don't use:
+ #     _( "string A" + \
+ #        "string B" )
+ #
+ #  that sucks translation, cause it's split in 2 separate strings.
+ # Instead, use this:
+ #
+ #     _( "string A" \
+ #        "string B" )
+ #
  # Revision 1.60  2003/11/21 11:48:03  dischi
  # Reworked the directory settings: MOVIE_PLAYLISTS and AUDIO_RANDOM_PLAYLIST
***************
*** 104,108 ****
  
                   ('DIRECTORY_CREATE_PLAYLIST', _('Directory Create Playlist'),
!                   _('Handle the directory as playlist. After one file is played, the 
next '+\
                      'one will be started.')) ,
  
--- 115,119 ----
  
                   ('DIRECTORY_CREATE_PLAYLIST', _('Directory Create Playlist'),
!                   _('Handle the directory as playlist. After one file is played, the 
next '\
                      'one will be started.')) ,
  
***************
*** 114,118 ****
  
                   ('DIRECTORY_AUTOPLAY_ITEMS', _('Directory Autoplay Items'),
!                   _('Autoplay the whole directory (as playlist) when it contains 
only '+\
                      'files and no directories' ))]
  
--- 125,129 ----
  
                   ('DIRECTORY_AUTOPLAY_ITEMS', _('Directory Autoplay Items'),
!                   _('Autoplay the whole directory (as playlist) when it contains 
only '\
                      'files and no directories' ))]
  




-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to