
Diego Pazos
Top achievements
Rank 1
Diego Pazos
asked on 07 Dec 2010, 05:29 PM
Hi. Could you provide me with the localization (internationalization) keys for the tooltips in the "Next page" and "Last page" buttons and "page" and "items" labels in the footer of the RadGrid and RadFileExplorer controls?
Also I don't know whether I'm supposed to put them in "RadEditor.Dialogs.resx" or "RadGrid.Main.resx".
Thanks in advance.
4 Answers, 1 is accepted
0
Hello Diego,
You can localize these buttons by adding the corresponding RadGrid global resource file to the project. You should also set the culture programmatically:
Global resources for RadGrid
Regards,
Daniel
the Telerik team
You can localize these buttons by adding the corresponding RadGrid global resource file to the project. You should also set the culture programmatically:
RadFileExplorer1.Grid.Culture =
new
System.Globalization.CultureInfo(
"fr-FR"
);
Global resources for RadGrid
Regards,
Daniel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0

Diego Pazos
Top achievements
Rank 1
answered on 15 Dec 2010, 05:23 PM
Thanks for the answer.
Despite the given response, I could not fix the problem.
I don't have the "Culture" property of "RadFileExplorer1.Grid." for my RadFileExplorer version.
Instead, I have RadFileExplorer1.Language.
But most importantly, I believe the localization for RadFileExplorer is taken from RadEditor.Dialogs.resx.
For example, in RadEditor.Dialogs.resx I have the "Common_SortBySize" resource key to size column name, and "Common_SortByFilename" resource key to sort by file column name localization.
Could you clarify this for me?
Thanks in advance.
Despite the given response, I could not fix the problem.
I don't have the "Culture" property of "RadFileExplorer1.Grid." for my RadFileExplorer version.
Instead, I have RadFileExplorer1.Language.
But most importantly, I believe the localization for RadFileExplorer is taken from RadEditor.Dialogs.resx.
For example, in RadEditor.Dialogs.resx I have the "Common_SortBySize" resource key to size column name, and "Common_SortByFilename" resource key to sort by file column name localization.
Could you clarify this for me?
Thanks in advance.
0
Hello Diego,
I thought you are aware that RadFileExplorer uses RadEditor's resource files since this is explained in the online documentation.
In this case, however you are asking how to localize properties that are not available in the aforementioned resource. That is why I suggested that you use RadGrid's own resx file.
In order for this to work correctly, you have to set the Culture property (in RadGrid) to the corresponding culture. You can access RadGrid through the Grid property in RadFileExplorer.
That said, what version of RadControls for ASP.NET AJAX is used in your scenario?
Best regards,
Daniel
the Telerik team
I thought you are aware that RadFileExplorer uses RadEditor's resource files since this is explained in the online documentation.
In this case, however you are asking how to localize properties that are not available in the aforementioned resource. That is why I suggested that you use RadGrid's own resx file.
In order for this to work correctly, you have to set the Culture property (in RadGrid) to the corresponding culture. You can access RadGrid through the Grid property in RadFileExplorer.
That said, what version of RadControls for ASP.NET AJAX is used in your scenario?
Best regards,
Daniel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0

Diego Pazos
Top achievements
Rank 1
answered on 16 Dec 2010, 07:21 PM
The package we downloaded is RadControls_for_ASP.NET_AJAX_2010_1_309_dev
Thanks for your assistance.
Thanks for your assistance.