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

turkish language localization file

13 Answers 386 Views
Editor
This is a migrated thread and some comments may be shown as answers.
eniseftekin
Top achievements
Rank 1
eniseftekin asked on 17 Apr 2008, 09:02 AM
Hello ,
Anyone has Turkish localization file for radeditor?

13 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 18 Apr 2008, 03:27 PM
Hi Enis,

Please, note that Telerik supports only English, French and German localizations shipped with the controls. The rest of the localizations are provided by our customers.

If you translate the editor's localization to Turkish and share it with our community and it works properly, we will gladly award you with 5000 Telerik points. You can see how to do that in the following help article: Creating a New Language.

You should translate only the following 4 files:

RadEditor.Dialogs.resx
RadEditor.Main.resx
RadEditor.Modules.resx
RadEditor.Tools.resx

Best regards,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Hürkal
Top achievements
Rank 1
answered on 19 Feb 2009, 12:54 PM
How can i translate RAdGrid to Turkish? I cannot find any resx file for RadGrid.
0
Sebastian
Telerik team
answered on 19 Feb 2009, 01:41 PM
Hi Hürkal,

We do not have resource file for Turkish localization of RadGrid, however you can use the directions provided in the Localization/Accessibility chapter of the documentation:

http://www.telerik.com/help/aspnet-ajax/grdlocalizationthruresourcefiles.html (and the rest of the articles there)

to prepare such resource file. We will also appreciate.

You can also post that file in the code library section of our site to make it available for other community members as well. Your effort will be rewarded with Telerik points which can be used as a discount for future purchases/upgrades of our controls.

Kind regards,
Sebastian
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Hürkal
Top achievements
Rank 1
answered on 20 Feb 2009, 08:15 AM
Do you have any English language file for RadGrid? I cannot get enough information to create one.
0
Sebastian
Telerik team
answered on 20 Feb 2009, 10:54 AM
Hi Hürkal,

We do not have English resource file since by default the messages from the grid elements are in English language. I suggest you review the resources from my previous post and contact us again if you have particular questions about certain parts of the RadGrid resource file content - we will gladly respond.

Regards,
Sebastian
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Hürkal
Top achievements
Rank 1
answered on 25 Feb 2009, 10:35 AM
I could localize lots of parts of RadGrid, except the pager text with Slider. How can i change this?
0
Sebastian
Telerik team
answered on 25 Feb 2009, 02:10 PM
Hello Hürkal,

To localize the text for the grid slider pager, change the ClientSettings -> ClientMessages -> PagerTooltipFormatString property value. This value will be propagated both for the slider pager text and for the vertical scroll tooltip when using virtual scrolling.

Since this information is missing from the documentation currently, we will add it for one of the next versions.

Kind regards,
Sebastian
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
-DJ-
Top achievements
Rank 1
answered on 26 Feb 2009, 04:35 PM
Hi Sebastian,

After setting the PagerTooltipFormatString  there is still one task left. To translate the "Decrease" and "Increase" tooltips for the "-" and "+" at the ends of the slider, as well as the "Drag" tooltip for the handle. I cannot find any way to translate these tooltips through the clientsettings variables.

Regards,
-DJ-
0
Daniel
Telerik team
answered on 04 Mar 2009, 12:47 PM
Hello DJ,

You can change the tooltips on the server instead:
protected void RadGrid1_PreRender(object sender, EventArgs e) 
    foreach (GridPagerItem pager in RadGrid1.MasterTableView.GetItems(GridItemType.Pager)) 
    { 
        RadSlider slider = pager.FindControl("GridSliderPager"as RadSlider; 
        if (slider != null
        { 
            slider.IncreaseText = ">>>"
            slider.DecreaseText = "<<<"
            slider.DragText = "Drag me"
        } 
    } 

Let us know if you have more questions.

Best regards,
Daniel
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
-DJ-
Top achievements
Rank 1
answered on 04 Mar 2009, 01:08 PM
Hi Daniel,

Thank you  :)

Are there any plans to globalize one approach to the translation settings for all controls, or is that not realistic for some reason?
From my point of view, using resx files seems to be the most convenient way.

Regards,
-DJ-
0
Sebastian
Telerik team
answered on 06 Mar 2009, 05:31 PM
Hi -DJ-,

Currently we do not have plans for providing common resource files for our controls simply because we are not proficient enough/have the opportunity to translate the English messages into different languages. However, we will gladly reward with Telerik points every client/community member who posts localization files (resx) for our products in the code library section on our site.

You are also welcome to participate in this initiative :)

Best regards,
Sebastian
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
-DJ-
Top achievements
Rank 1
answered on 07 Mar 2009, 01:50 PM
Hi Sebastian,

I didn't mean to ask if Telerik could do the translations for us. What I meant to ask was if you had any plans to make the translation progress easier, for example by using one and the same translation method for all controls.

As you can see by this thread, just figuring out how to translate some strings can prove to be a challenge.

So my suggestion would be that you would supply a resx file in English with all controls. This would greatly shorten the time spent on translating the controls.

Regards,
-DJ-
0
Sebastian
Telerik team
answered on 09 Mar 2009, 09:38 AM
Hello -DJ-,

Thank you for additional your feedback - now I see your point more clearly. We will do our best to include separate resource files in English language for all our controls which do not have such at this point. You can merge some of them if you want to when using several our controls in the same application.

We will postback in this thread once these files are available. I updated your Telerik points for the involvement.

Kind regards,
Sebastian
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Editor
Asked by
eniseftekin
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Hürkal
Top achievements
Rank 1
Sebastian
Telerik team
-DJ-
Top achievements
Rank 1
Daniel
Telerik team
Share this question
or