"choose file" as text in the <input type=file /> control - how to change language?
-
Hi,
I have a German localized computer.
I have a html file:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//DE">
<html>
<head>
<meta http-equiv="content-language" content="de">
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<input type="file">
</body>
</html>and expect to have a German text in the upload control within my QWebView.
But this is not the case, it is always english "Choose file - no file selected".
The following code doesn't help too:QLocale l = QLocale::system(); //l.name() == "de_DE" //l = QLocale(QString::fromLatin1("nn_NO")); myqwebview->setLocale(l);
It is possible to change the displayed text in the upload control?
Ciao
privet