Commit f380c1a0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix punctuation ". (%m)" -> "(%m) ."

parent 506bb385
......@@ -298,8 +298,8 @@ ssize_t FileRead( access_t *p_access, uint8_t *p_buffer, size_t i_len )
default:
msg_Err (p_access, "failed to read (%m)");
dialog_Fatal (p_access, _("File reading failed"), "%s (%m)",
_("VLC could not read the file."));
dialog_Fatal (p_access, _("File reading failed"),
_("VLC could not read the file (%m)."));
p_access->info.b_eof = true;
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment