I want to add a localization in my table in Editor through script.
I found out that I can add a new entry with :
var table = LocalizationSettings.StringDatabase.GetTable("MyTable",LocalizationSettings.SelectedLocale);
table.AddEntry(key,message);
however this is only add for the current selectedLocale. How can I add multiples translation ?
Thank you