]> git.sesse.net Git - vlc/blobdiff - modules/access/file.c
* English grammar fixes and beautifications for the intf_UserFatal messages
[vlc] / modules / access / file.c
index 52456915fd16bd37a66131a5bfd9ea5288557859..c0cbb4349d7e4d5c651fceb6d72a9b888bf6b3d0 100644 (file)
@@ -279,7 +279,7 @@ static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
             default:
                 msg_Err (p_access, "read failed (%m)");
                 intf_UserFatal (p_access, VLC_FALSE, _("File reading failed"),
-                                _("VLC could not read file."));
+                                _("VLC could not read the file."));
         }
 
         /* Delay a bit to avoid consuming all the CPU. This is particularly
@@ -431,7 +431,7 @@ static int open_file (access_t *p_access, const char *psz_name)
     {
         msg_Err( p_access, "cannot open file %s", psz_name );
         intf_UserFatal( p_access, VLC_FALSE, _("File reading failed"),
-                        _("VLC could not open file \"%s\"."), psz_name );
+                        _("VLC could not open the file \"%s\"."), psz_name );
         free (path);
         return VLC_EGENERIC;
     }
@@ -447,7 +447,7 @@ static int open_file (access_t *p_access, const char *psz_name)
     {
         msg_Err (p_access, "cannot open file %s (%m)", psz_name);
         intf_UserFatal (p_access, VLC_FALSE, _("File reading failed"),
-                        _("VLC could not open file \"%s\"."), psz_name);
+                        _("VLC could not open the file \"%s\"."), psz_name);
         return -1;
     }