That was for version 8...my bad, the code will be very similar, just find this section
string[,] fields = null;
if (AddSelectCountryRecord && AddNoneRecord)
{
fields = new string[,]
{
{ GetString("countryselector.selectcountryrecord"), "" },
{ GetString("general.selectnone"), "" }
};
}
else
{
// Add 'none' record when requested
if (AddNoneRecord)
{
fields = new string[,] { { GetString("general.selectnone"), "" } };
}
}
and change the values to match what you want. That should work...You may have to play around with which parts to change depending on your settings, or you could just change all of them.