/// <summary> /// Gets localized message text with an explicit context to help disambiguate /// meaning for translators. /// </summary> /// <example> /// <code language="csharp"><![CDATA[ /// string actionText = MyPackageLang.ParticularText("Action", "New"); /// ]]></code> /// </example> /// <param name="context">The context.</param> /// <param name="message">Non-translated message text in root language.</param> /// <returns> /// The localized text or non-translated text if not localized. /// </returns> public static string ParticularText(string context, string message) { return(LocalizedStrings.ParticularText(context, message)); }