To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66919
User ihi changed the following:
What |Old value |New value
================================================================================
CC|'ace_dent,maho,mike_hall,p|'ace_dent,maho,mike_hall,p
|janik,rene' |janik,pl,rene'
--------------------------------------------------------------------------------
Target milestone|OOo 2.x |OOo 2.2
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Fri Dec 15 08:30:51 -0800
2006 -------
Hi PL,
can you please have a look onto resmgr.cxx
InternalResMgr* ResMgrContainer::getResMgr
...
if( nTries == 0 && !aLocale.Language.equalsIgnoreAsciiCaseAscii( "en" )
)
{
// locale fallback failed
// fallback to en-US locale
nTries = 2;
aLocale.Language = OUString( RTL_CONSTASCII_USTRINGPARAM( "en" ) );
aLocale.Country = OUString( RTL_CONSTASCII_USTRINGPARAM( "US" ) );
aLocale.Variant = OUString();
}
...
and
InternalResMgr* ResMgrContainer::getNextFallback( InternalResMgr* pMgr )
{
com::sun::star::lang::Locale aLocale = pMgr->aLocale;
if( aLocale.Variant.getLength() )
aLocale.Variant = OUString();
else if( aLocale.Country.getLength() )
aLocale.Country = OUString();
else if( ! aLocale.Language.equalsIgnoreAsciiCaseAscii( "en" ) )
{
don't look en-GB friendly. Is the the cause for the missing en-GB fallbacks in
res files?
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]