Bug when uploading pictures with international characters?

That is a bit odd, and I can’t reproduce your error. Perhaps it has something to do with differnt character encodings of the filename/filesystem you are uploading from or to. When handling file uploads WordPress sanitizes the file name to remove spaces and some other unwanted characters. This sanitizing is performed by sanitize_file_name when the upload completes. The first part (and integral) of which looks like this:

$filename_raw = $filename;
$special_chars = array("?", "[", "]", "https://wordpress.stackexchange.com/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0));
$special_chars = apply_filters('sanitize_file_name_chars', $special_chars, $filename_raw);
$filename = str_replace($special_chars, '', $filename);
$filename = preg_replace('/[\s-]+/', '-', $filename);
$filename = trim($filename, '.-_');

As you can see the array $special_chars does contain the grave accent, but not the acute accent. I see no reason why this code would filter out the á character (unless you have some plugin installed that’s hooking into sanitize_file_name_chars or sanitize_file_name). I can imagine there being more than one unicode representation of á (as is the case with the Swedish characters åäö for example), or perhaps the filename you are uploading is encoded using ISO-8859-1, so try to isolate which is being used in your case and try uploading a with few differently encoded file names if possible. Also, try to isolate this to a server or client issue, i.e. upload the same file to different servers to find out if it behaves the same in different systems. This image, for example, uploads just fine at my clean WP install running on OS X/MAMP.