OfficeHeart
Top achievements
Rank 1
OfficeHeart
asked on 18 Jun 2012, 11:04 AM
How to translate the "drop files here" message?
Thanks,
Martin
Thanks,
Martin
3 Answers, 1 is accepted
0
Hi Martin,
Plamen Zdravkov
the Telerik team
It is not clear which is the language to which you are trying to translate this phrase. Please clarify so we can research it.
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
OfficeHeart
Top achievements
Rank 1
answered on 19 Jun 2012, 07:35 AM
Hello,
We want to translate this to dutch, but any other language should be possible.
Thanks,
Martin
We want to translate this to dutch, but any other language should be possible.
Thanks,
Martin
0
Hi Martin,
Hope this will be helpful.
All the best,
Plamen Zdravkov
the Telerik team
Thank you for reporting this issue and for your concern with Telerik controls.
I have submitted a PITS item about adding localization property for the "drop files here" message. Please excuse the inconvenience caused by the issue.
Meanwhile here below is the code that I added to our on-line demo that can work as a temporary solution for setting the desired text in the area:
var
$ = $telerik.$;
function
pageLoad() {
if
(!Telerik.Web.UI.RadAsyncUpload.Modules.FileApi.isAvailable()) {
$(
".wrapper"
).replaceWith(
$(
"<span><strong>Your browser does not support Drag and Drop. Please take a look at the info box for additional information.</strong></span>"
));
}
$(
".ruDropZone"
).find(
"span"
).text(
"Hier drop bestanden"
);
}
function
OnClientFileUploading(sender, args) {
$(
".ruDropZone"
).find(
"span"
).text(
"Hier drop bestanden"
);
}
<
telerik:RadAsyncUpload
runat
=
"server"
ID
=
"RadAsyncUpload1"
OnClientFileUploading
=
"OnClientFileUploading"
>
</
telerik:RadAsyncUpload
>
Hope this will be helpful.
All the best,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.