/**
 * This class contains and manages the internationalizable and 
 * changable user interface text of the Gigapan Explorer application. 
 * <br><br>
 * <a href="mailto:ehudsons@andrew.cmu.edu">Ellen Hudson-Snyder</a>, 
 * <a href="mailto:evedar@andrew.cmu.edu">Elvin Vedar</a>,
 * <a href="mailto:cbalz@andrew.cmu.edu">Christopher M. Balz</a>.
 * <br><br>CVS Version Info:<br>
 *  $Id: Strings.js,v 1.7 2005/11/06 08:32:28 cbalz Exp $    
 * <br><br> 
 * @object-prop <code>strPrototyping</code> A utility message for testing purposes.
 * @author Team GigaToasted (Fall-2005-CMU-NASA/Google-Practicum Subteam) 
 * @version 1.0
 * <br><br>
 */

/**
 * Create a <code>String</code> object.
 * @param pStrLocale string  The two-letter locale code for the current locale.
 */
function Strings(pStrLocale) {
    if (pStrLocale != null && pStrLocale != "us") {
    } else {
        // Default to U.S. locale
        this.strPrototyping = "<span style='display: none;'><br><br>This is the Console.  <br><br> It contains all displayed sub-" + 
            "elements, such as the control panel and viewport (below), for Gigapan. <br><br><b>Try " +
            "resizing the browser window!</b></span>";
        this.strConfigErrorRemedy = "\n\n To fix this problem, read the JavaScriptdoc on the 'Configuration' class, located " +
            "in the 'Controller' package. The JavaScriptdoc may be found at: \n\n   http://" + 
            self.gloScope.getWholeDomain(window.location.href) + "/gigapanjsdoc/";
        this.strCopyAlert = "\n\n If you cannot see some of the text on this alert box, \n" +
            "click on it and press the copy-to-clipboard key binding (i.e., for Windows, <cntrl>-c,\n" +
            "or for Mac, <open-apple>-c).  Then paste it to your favorite text editor.\n\n";
    }
}
