[vlc-commits] Hotkeys: strings simplifications

Jean-Baptiste Kempf git at videolan.org
Sun Apr 21 17:08:36 CEST 2013


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Apr 21 17:08:23 2013 +0200| [105c1cfecd29cb23874dc100301a2f46fbb65e2e] | committer: Jean-Baptiste Kempf

Hotkeys: strings simplifications

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=105c1cfecd29cb23874dc100301a2f46fbb65e2e
---

 modules/control/hotkeys.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/control/hotkeys.c b/modules/control/hotkeys.c
index c15e309..8589f3f 100644
--- a/modules/control/hotkeys.c
+++ b/modules/control/hotkeys.c
@@ -385,7 +385,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
         case ACTIONID_SUBSYNC_MARKAUDIO:
         {
             p_sys->subtitle_delaybookmarks.i_time_audio = mdate();
-            DisplayMessage( p_vout, _("Sub sync: bookmarked audio timestamp"));
+            DisplayMessage( p_vout, _("Sub sync: bookmarked audio time"));
             break;
         }
         case ACTIONID_SUBSYNC_MARKSUB:
@@ -400,13 +400,13 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
                 i_count = list.p_list->i_count;
                 if( i_count < 1 || val.i_int < 0 )
                 {
-                    DisplayMessage( p_vout, _("Sub sync: No active subtitle") );
+                    DisplayMessage( p_vout, _("No active subtitle") );
                     var_FreeList( &list, &list2 );
                     break;
                 }
                 p_sys->subtitle_delaybookmarks.i_time_subtitle = mdate();
                 DisplayMessage( p_vout,
-                                _("Sub sync: bookmarked subtitle timestamp"));
+                                _("Sub sync: bookmarked subtitle time"));
                 var_FreeList( &list, &list2 );
             }
             break;
@@ -469,7 +469,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
                 i_count = list.p_list->i_count;
                 if( i_count < 1 || val.i_int < 0 )
                 {
-                    DisplayMessage( p_vout, _("Subtitle delay: No active subtitle") );
+                    DisplayMessage( p_vout, _("No active subtitle") );
                     var_FreeList( &list, &list2 );
                     break;
                 }



More information about the vlc-commits mailing list