Localisation
Have your own localised text for the strings used within the plugin
1. Implement ILocalisationServiceProvider Interface
namespace YourOwnNameSpace
{
public class MyLocalisationServiceProvider : ILocalisationServiceProvider
{
#region ILocalisationServiceProvider implementation
public string GetLocalisedString(string key, string defaultValue)
{
string localisedValue = defaultValue;//Replace defaultValue with your own mecanism to find localised text which has the "key"
return localisedValue;
}
#endregion
}
}2. Set the ILocalisationServiceProvider
Key constants used in Rate My App feature
Key Used
Attribute Text Description
Last updated