]> git.sesse.net Git - vlc/commitdiff
Do not translate log messages
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Wed, 13 Aug 2008 18:28:14 +0000 (21:28 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Wed, 13 Aug 2008 18:28:14 +0000 (21:28 +0300)
modules/codec/subtitles/subsdec.c
modules/codec/subtitles/subsusf.c
modules/control/lirc.c

index f6abcd9f3bc3002b7985deae2e2c04190675bffd..0ce9de2b0aadbd610338f6da7c6997961fbe3542 100644 (file)
@@ -351,9 +351,9 @@ static subpicture_t *ParseText( decoder_t *p_dec, block_t *p_block )
     {
         if (EnsureUTF8( psz_subtitle ) == NULL)
         {
-            msg_Err( p_dec, _("failed to convert subtitle encoding.\n"
+            msg_Err( p_dec, "failed to convert subtitle encoding.\n"
                      "Try manually setting a character-encoding "
-                     "before you open the file.") );
+                     "before you open the file." );
         }
     }
     else
@@ -387,9 +387,9 @@ static subpicture_t *ParseText( decoder_t *p_dec, block_t *p_block )
             if( ( ret == (size_t)(-1) ) || inbytes_left )
             {
                 free( psz_new_subtitle );
-                msg_Err( p_dec, _("failed to convert subtitle encoding.\n"
+                msg_Err( p_dec, "failed to convert subtitle encoding.\n"
                         "Try manually setting a character-encoding "
-                                "before you open the file.") );
+                                "before you open the file." );
                 return NULL;
             }
 
index 6e074d712d0ca362fd15a06ade8cbb24201ced1c..ff8e3d77113758e888ebe8eabf2728f59f33a439 100644 (file)
@@ -212,8 +212,8 @@ static subpicture_t *ParseText( decoder_t *p_dec, block_t *p_block )
     /* USF Subtitles are mandated to be UTF-8 -- make sure it is */
     if (EnsureUTF8( psz_subtitle ) == NULL)
     {
-        msg_Err( p_dec, _("USF subtitles must be in UTF-8 format.\n"
-                 "This stream contains USF subtitles which aren't.") );
+        msg_Err( p_dec, "USF subtitles must be in UTF-8 format.\n"
+                 "This stream contains USF subtitles which aren't." );
     }
 
     /* Create the subpicture unit */
index 0ae6fbb1faf8351274d0a73a39aa11e37fac18ed..de500e10972c8e68254c0c43df98e9aa58de7c20 100644 (file)
@@ -186,7 +186,7 @@ static void Run( intf_thread_t *p_intf )
                     osd_MenuActivate( VLC_OBJECT(p_intf) );
                 else
                 {
-                    msg_Err( p_intf, _("Please provide one of the following parameters:") );
+                    msg_Err( p_intf, "Please provide one of the following parameters:" );
                     msg_Err( p_intf, "[on|off|up|down|left|right|select]" );
                     break;
                 }