<style>
/* Changing the layout to use less space for mobiles */
@media screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) {
    #email-body { min-width: 30em !important; }
    #email-page { padding: 8px !important; }
    #email-banner { padding: 8px 8px 0 8px !important; }
    #email-avatar { margin: 1px 8px 8px 0 !important; padding: 0 !important; }
    #email-fields { padding: 0 8px 8px 8px !important; }
    #email-gutter { width: 0 !important; }
}
</style>
<div id="email-body">
<table id="email-wrap" align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#f0f0f0;color:#000000;width:100%;">
    <tr valign="top">
        <td id="email-page" style="padding:16px !important;">
            <table align="center" border="0" cellpadding="0" cellspacing="0" style="background-color:#ffffff;border:1px solid #bbbbbb;color:#000000;width:100%;">
                <tr valign="top">
                    <td bgcolor="#4d5c47" style="background-color:#4d5c47;color:#ffffcc;font-family:Arial,FreeSans,Helvetica,sans-serif;font-size:12px;line-height:1;"><img src="http://www.crosswire.org/bugs/s/en_US-l73y3/783/14/_/jira-logo-scaled.png" alt="" style="vertical-align:top;" /></td>
                </tr><tr valign="top">
    <td id="email-banner" style="padding:32px 32px 0 32px;">

                
        
        
            <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="width:100%;">
    <tr valign="top">
        <td style="color:#505050;font-family:Arial,FreeSans,Helvetica,sans-serif;padding:0;">
                                        <img id="email-avatar" src="http://www.crosswire.org/bugs/secure/useravatar?avatarId=10062" alt="" height="48" width="48" border="0" align="left" style="padding:0;margin: 0 16px 16px 0;" />
                        <div id="email-action" style="padding: 0 0 8px 0;font-size:12px;line-height:18px;">
                                    <a class="user-hover" rel="dmsmith" id="email_dmsmith" href="http://www.crosswire.org/bugs/secure/ViewProfile.jspa?name=dmsmith" style="color:#000000;">DM Smith</a>
     commented on <img src="http://www.crosswire.org/bugs/images/icons/improvement.gif" height="16" width="16" border="0" align="absmiddle" alt="Improvement"> <a style='color:#000000;text-decoration:none;' href='http://www.crosswire.org/bugs/browse/JS-238'>JS-238</a>
            </div>
                        <div id="email-summary" style="font-size:16px;line-height:20px;padding:2px 0 16px 0;">
                <a style='color:#000000;text-decoration:none;' href='http://www.crosswire.org/bugs/browse/JS-238'><strong>Add a way for third party applications to change Locale</strong></a>
            </div>
                    </td>
    </tr>
</table>
    </td>
</tr>
<tr valign="top">
    <td id="email-fields" style="padding:0 32px 32px 32px;">
        <table border="0" cellpadding="0" cellspacing="0" style="padding:0;text-align:left;width:100%;" width="100%">
            <tr valign="top">
                <td id="email-gutter" style="width:64px;white-space:nowrap;"></td>
                <td>
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr valign="top">
    <td colspan="2" style="color:#000000;font-family:Arial,FreeSans,Helvetica,sans-serif;font-size:12px;padding:0 0 16px 0;width:100%;">
        <div class="comment-block" style="background-color:#edf5ff;border:1px solid #dddddd;color:#000000;padding:12px;"><p>Great idea.<br/>
There are many parts to this. (Lots of messages that come up from deep in the bowels of JSword, needing to be messaged at the last minute). If need be, lets create linked issues for this and track each separately.</p>

<p>Not sure all can be handled. But lets tackle Bible book names first. That is very visible. Here is some background:</p>

<p>BibleNames is the catalog of Bible book names (BibleBook objects) and already is Locale sensitive. This was done because English Bible book names is the default for OSIS and thus JSword.</p>

<p>BookName holds a single book name for BibleNames. This class is also Locale sensitive. The primary features of this class are:</p>
<ul>
        <li>Holds 2 static application preferences (for UPPER, lower or MixEd case and for long vs short name) that pertain to how to re-write references. These are an altogether different problem for a multi-user server.</li>
        <li>supports matching of non-exact input. E.g. 1Chr
        <ul>
                <li>Is one of the alternate names a prefix of the string to match, or is the string to match a prefix of the the alternate</li>
                <li>Is the string to match a prefix of the full name</li>
                <li>Is the short name a prefix of the string to match or is the string to match a prefix of the short name.</li>
        </ul>
        </li>
</ul>


<p>BibleBook is an ENUM, which is static class. There are a few methods in there which are based on the default Locale:</p>
<ul>
        <li>BibleBook getBook(String)</li>
        <li>boolean isBook(String)</li>
        <li>BookName getBookName()</li>
        <li>String getLongName()</li>
        <li>String getShortName()</li>
        <li>String getPreferredName() &#8211; doubly static, being also based on an application preference via BookName</li>
</ul>


<p>getBook deserves special attention since it is the backbone of taking a text string whether from a user, a module or the application and guessing the best book for it.<br/>
It does the following:</p>
<ul>
        <li>See if it is an exact match for an OSIS Bible book name. This handles OSIS modules and the application. Sometimes the user.</li>
        <li>See if there is a match in the given default Locale (which, when this is all said and done, will be the given locale). This handles user input.</li>
        <li>See if there is a match in the English locale (if that is not the given locale). This handles module input for non-OSIS modules (e.g. ThML) and for users who are not in the English locale, but supplying English Bible references.</li>
</ul>


<p>The matching here is done by BibleNames, it does the following in order:</p>
<ul>
        <li>Look for an exact match of the long name</li>
        <li>Look for an exact match of the short name</li>
        <li>Look for an exact match of an alternate name</li>
        <li>iterate over the books in the BibleBook order (this needs to change, it should favor books in order of importance) and call match in BookName.</li>
</ul>


<p>The final part of Bible book names in AccuracyType.tokenize(...). It is based on ASCII book names. This causes problems in handling foreign language references, such as Farsi. This really is a different issue, but it might cause some confusion in working out whether a Locale solution is correct.</p></div>
        <div style="color:#505050;padding:4px 0 0 0;">                </div>
    </td>
</tr>
                    </table>
                </td>
            </tr>
        </table>
    </td>
</tr>













            </table>
        </td><!-- End #email-page -->
    </tr>
    <tr valign="top">
        <td style="color:#505050;font-family:Arial,FreeSans,Helvetica,sans-serif;font-size:10px;line-height:14px;padding: 0 16px 16px 16px;text-align:center;">
            This message is automatically generated by JIRA.<br />
            If you think it was sent incorrectly, please contact your JIRA administrators<br />
            For more information on JIRA, see: <a style='color:#000000;' href='http://www.atlassian.com/software/jira'>http://www.atlassian.com/software/jira</a>
        </td>
    </tr>
</table><!-- End #email-wrap -->
</div><!-- End #email-body -->