BlogEngine.Core.Json.JsonCulture.AddResource C# (CSharp) Méthode

AddResource() public méthode

Adds a new translatable string resource to this JsonCulture.
public AddResource ( string resourceLabelKey ) : string
resourceLabelKey string The key used to retrieve the translated value from global resource labels.
Résultat string
        public string AddResource(string resourceLabelKey)
        {
            var translation = Utils.Translate(resourceLabelKey, null, cultureInfo);
            translationDict.Add(resourceLabelKey, translation);
            return translation;
        }