Adium

Ticket #10327 (closed defect: fixed)

Opened 5 months ago

Last modified 5 months ago

Support Chinese Name Format: “<Surname> <Given Name>”

Reported by: transalpin Assigned to: nobody
Priority: normal Milestone:
Component: Adium UI Version: 1.3b6
Severity: normal Keywords:
Cc: Patch: None
Pending: 0

Description

There is an option in Address Book which allows you to put the surname in front of the given name(s) for some single entries (while default mode remains “<givenname> <familyname>”). This is especially useful for Chinese contacts. When selected, also other apps like Mail recognize this preference. However, Adium doesn’t. Probably not a huge bug for most Westerners, but sometimes it would be nice to see the name displayed correctly, so you can just copy&paste it when you start a conversation. Hope it’s easy to fix. 謝謝.

Change History

07/02/2008 10:35:26 PM changed by evands

  • status changed from new to closed.
  • resolution set to worksforme.

Change the name format in Preferences->Advanced->Address Book to what you want :)

07/03/2008 02:08:58 AM changed by am

  • status changed from closed to reopened.
  • resolution deleted.

That's a global setting. transalpin is asking Adium to honor the per-contact setting (yes, Address Book allows that, and the Address Book API allows to read that information).

07/03/2008 02:47:46 AM changed by evands

So "First Last" becomes "Last First".... what happens in the other global settings? Nothing?

if (([[person valueForProperty:kABPersonFlags] intValue] & kABNameOrderingMask) == kABLastNameFirst) {
   if (theDisplayStyle == FirstLast) {
	theDisplayStyle = LastFirstNoComma;
   }
}

07/03/2008 03:25:45 AM changed by am

If the global setting matches the local one, nothing happens. If they differ, you have to switch.

07/03/2008 10:35:04 AM changed by evands

Yes, but there are other global settings which aren't a mirror image of "Last First." There is, for example First Last-initial. I don't think swapping that to Last-initial First makes much sense....but then I wouldn't use this functionality. Does it?

07/13/2008 02:33:49 PM changed by evands

  • status changed from reopened to closed.
  • resolution set to fixed.

(In [24305]) Respect the 'last name first' per-contact setting which can be set in the address book. Fixes #10327