Update of /cvsroot/freevo/freevo/src/video/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv26156/src/video/plugins

Modified Files:
        imdb.py mplayer.py xine.py 
Log Message:
Some more i18n improvements.


Index: imdb.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/video/plugins/imdb.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** imdb.py     4 Oct 2003 18:37:29 -0000       1.26
--- imdb.py     21 Oct 2003 21:17:42 -0000      1.27
***************
*** 16,19 ****
--- 16,22 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.27  2003/10/21 21:17:42  gsbarbieri
+ # Some more i18n improvements.
+ #
  # Revision 1.26  2003/10/04 18:37:29  dischi
  # i18n changes and True/False usage
***************
*** 176,180 ****
  
          if items: 
!             moviemenu = menu.Menu('IMDB Query', items)
              menuw.pushmenu(moviemenu)
              return
--- 179,183 ----
  
          if items: 
!             moviemenu = menu.Menu(_('IMDB Query'), items)
              menuw.pushmenu(moviemenu)
              return

Index: mplayer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/video/plugins/mplayer.py,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** mplayer.py  20 Oct 2003 13:36:42 -0000      1.35
--- mplayer.py  21 Oct 2003 21:17:42 -0000      1.36
***************
*** 21,24 ****
--- 21,27 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.36  2003/10/21 21:17:42  gsbarbieri
+ # Some more i18n improvements.
+ #
  # Revision 1.35  2003/10/20 13:36:42  outlyer
  # Remove double-quit
***************
*** 578,586 ****
                  self.log_stdout = open(fname_out, 'w')
                  self.log_stderr = open(fname_err, 'w')
!                 print 'MPlayer logging to "%s" and "%s"' % (fname_out, fname_err)
              except IOError:
                  print
!                 print (('ERROR: Cannot open "%s" and "%s" for ' +
!                         'MPlayer logging!') % (fname_out, fname_err))
                  config.MPLAYER_DEBUG = 0
                  
--- 581,590 ----
                  self.log_stdout = open(fname_out, 'w')
                  self.log_stderr = open(fname_err, 'w')
!                 print _( 'MPlayer logging to "%s" and "%s"' ) % (fname_out, 
fname_err)
              except IOError:
                  print
!                 print ( _('ERROR') + ': ' + _('Cannot open "%s" and "%s" for ' \
!                                               'MPlayer logging!')
!                         ) % (fname_out, fname_err)
                  config.MPLAYER_DEBUG = 0
                  
***************
*** 634,638 ****
              rc.post_event(USER_END)
          else:
!             print 'error while playing file'
              rc.post_event(PLAY_END)
                          
--- 638,642 ----
              rc.post_event(USER_END)
          else:
!             print _( 'ERROR' ) + ': ' + _( 'unknow error while playing file' )
              rc.post_event(PLAY_END)
                          

Index: xine.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/video/plugins/xine.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** xine.py     19 Sep 2003 22:09:16 -0000      1.17
--- xine.py     21 Oct 2003 21:17:42 -0000      1.18
***************
*** 29,32 ****
--- 29,35 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.18  2003/10/21 21:17:42  gsbarbieri
+ # Some more i18n improvements.
+ #
  # Revision 1.17  2003/09/19 22:09:16  dischi
  # use new childapp thread function
***************
*** 95,100 ****
              config.XINE_COMMAND
          except:
!             print '\nERROR:\nXINE_COMMAND not defined, plugin deactivated'
!             print 'please check the xine section in freevo_config.py\n'
              return
  
--- 98,103 ----
              config.XINE_COMMAND
          except:
!             print _( 'ERROR' ) + ': ' + _("'XINE_COMMAND' not defined, plugin 'xine' 
deactivated")
!             print _( 'please check the xine section in freevo_config.py' )
              return
  
***************
*** 126,134 ****
          if xine_version < 922:
              if type == 'fb':
!                 print '\nERROR:\nfbxine version to old, plugin deactivated'
!                 print 'You need xine-ui > 0.9.21\n'
                  return
!             print '\nWARNING:\nxine version to old, plugin in fallback mode'
!             print 'You need xine-ui > 0.9.21 to use all features of the xine 
plugin\n'
              
          # create the xine object
--- 129,137 ----
          if xine_version < 922:
              if type == 'fb':
!                 print _( 'ERROR' ) + ': ' + _( "'fbxine' version too old, plugin 
'xine' deactivated" )
!                 print _( 'You need software %s' ) % 'xine-ui > 0.9.21'
                  return
!             print _( 'WARNING' ) + ': ' + _( "'xine' version too old, plugin in 
fallback mode" )
!             print _( "You need %s to use all features of the '%s' plugin" ) % ( 
'xine-ui > 0.9.21', 'xine' )
              
          # create the xine object




-------------------------------------------------------
This SF.net email is sponsored by OSDN developer relations
Here's your chance to show off your extensive product knowledge
We want to know what you know. Tell us and you have a chance to win $100
http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to