/// <summary> /// Formats action message text with ellipsis hint to highlight that the action /// will present the user with a different window. /// </summary> /// <remarks> /// <para>This method does not attempt to localize <paramref name="actionMessage"/>; /// use the other text methods of this interface to perform localization where /// required in addition to using this method.</para> /// </remarks> /// <example> /// <code language="csharp"><![CDATA[ /// string actionText = MyPackageLang.ParticularText("Action", "New"); /// string actionTextWithEllipsis = MyPackageLang.OpensWindow(actionText); /// ]]></code> /// </example> /// <param name="actionMessage">Action message text.</param> /// <returns> /// The formatted action message text. /// </returns> public static string OpensWindow(string actionMessage) { return(LocalizedStrings.OpensWindow(actionMessage)); }