To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=103200
------- Additional comments from t...@openoffice.org Tue Sep 1 14:03:15 +0000 2009 ------- There is a function that returns author by concatenating a first name, a space, and a last name. svx/source/items/flditem.cxx XubString SvxAuthorField::GetFormatted() const { XubString aString; switch( eFormat ) { case SVXAUTHORFORMAT_FULLNAME: aString = aFirstName; aString += sal_Unicode(' '); aString += aName; break; I am not sure, the above code is the only code to handle first and last names. There might be other codes somewhere. Is it possible to temporarily enhance the code to recognize target cultures like this in a separate issue? if ( Western languages ) { // Normal order aString = aFirstName; aString += sal_Unicode(' '); aString += aName; } else if ( East Asian languages ) { // Reverse order aString += aName; aString += sal_Unicode(' '); aString = aFirstName; } else if ( ... ) --------------------------------------------------------------------- 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: issues-unsubscr...@l10n.openoffice.org For additional commands, e-mail: issues-h...@l10n.openoffice.org --------------------------------------------------------------------- To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org For additional commands, e-mail: allbugs-h...@openoffice.org