diff input/appleir.c @ 33827:277ec491a8a7

Do not translate console messages of verbosity level MSGL_V and above.
author diego
date Sun, 24 Jul 2011 23:55:34 +0000
parents 0f1b5b68af32
children
line wrap: on
line diff
--- a/input/appleir.c	Sun Jul 24 23:55:26 2011 +0000
+++ b/input/appleir.c	Sun Jul 24 23:55:34 2011 +0000
@@ -79,7 +79,7 @@
 
   if (dev)
   {
-    mp_msg (MSGT_INPUT, MSGL_V, MSGTR_INPUT_APPLE_IR_Init, dev);
+    mp_msg (MSGT_INPUT, MSGL_V, "Initializing Apple IR on %s\n", dev);
     fd = open (dev, O_RDONLY | O_NONBLOCK);
     if (fd < 0)
     {
@@ -108,7 +108,7 @@
           id.vendor  == USB_VENDOR_APPLE &&
           (id.product == USB_DEV_APPLE_IR ||id.product == USB_DEV_APPLE_IR_2))
       {
-        mp_msg (MSGT_INPUT, MSGL_V, MSGTR_INPUT_APPLE_IR_Detect, file);
+        mp_msg (MSGT_INPUT, MSGL_V, "Detected Apple IR on %s\n", file);
         return fd;
       }
       close (fd);