This is a migrated thread and some comments may be shown as answers.

Localization

3 Answers 63 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
OfficeHeart
Top achievements
Rank 1
OfficeHeart asked on 18 Jun 2012, 11:04 AM
How to translate the "drop files here" message?

Thanks,
Martin

3 Answers, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 19 Jun 2012, 06:36 AM
Hi Martin,

 
It is not clear which is the language to which you are trying to translate this phrase. Please clarify so we can research it.
 

Greetings,
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
0
Plamen
Telerik team
answered on 22 Jun 2012, 07:18 AM
Hi Martin,

 
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.
Tags
AsyncUpload
Asked by
OfficeHeart
Top achievements
Rank 1
Answers by
Plamen
Telerik team
OfficeHeart
Top achievements
Rank 1
Share this question
or