| 360 {N_("Country"), "CTRY", "ADR"}, |
360 {N_("Country"), "CTRY", "ADR"}, |
| 361 {N_("Telephone"), "NUMBER", "TEL"}, |
361 {N_("Telephone"), "NUMBER", "TEL"}, |
| 362 {N_("Email"), "USERID", "EMAIL"}, |
362 {N_("Email"), "USERID", "EMAIL"}, |
| 363 {N_("Organization Name"), "ORGNAME", "ORG"}, |
363 {N_("Organization Name"), "ORGNAME", "ORG"}, |
| 364 {N_("Organization Unit"), "ORGUNIT", "ORG"}, |
364 {N_("Organization Unit"), "ORGUNIT", "ORG"}, |
| 365 {N_("Title"), "TITLE", NULL}, |
365 {N_("Job Title"), "TITLE", NULL}, |
| 366 {N_("Role"), "ROLE", NULL}, |
366 {N_("Role"), "ROLE", NULL}, |
| 367 {N_("Birthday"), "BDAY", NULL}, |
367 {N_("Birthday"), "BDAY", NULL}, |
| 368 {N_("Description"), "DESC", NULL}, |
368 {N_("Description"), "DESC", NULL}, |
| 369 {"", "N", NULL}, |
369 {"", "N", NULL}, |
| 370 {"", "ADR", NULL}, |
370 {"", "ADR", NULL}, |
| 1158 purple_notify_user_info_add_pair(user_info, _("Organization Unit"), text2); |
1158 purple_notify_user_info_add_pair(user_info, _("Organization Unit"), text2); |
| 1159 } |
1159 } |
| 1160 g_free(text2); |
1160 g_free(text2); |
| 1161 } |
1161 } |
| 1162 } else if(text && !strcmp(child->name, "TITLE")) { |
1162 } else if(text && !strcmp(child->name, "TITLE")) { |
| 1163 purple_notify_user_info_add_pair(user_info, _("Title"), text); |
1163 purple_notify_user_info_add_pair(user_info, _("Job Title"), text); |
| 1164 } else if(text && !strcmp(child->name, "ROLE")) { |
1164 } else if(text && !strcmp(child->name, "ROLE")) { |
| 1165 purple_notify_user_info_add_pair(user_info, _("Role"), text); |
1165 purple_notify_user_info_add_pair(user_info, _("Role"), text); |
| 1166 } else if(text && !strcmp(child->name, "DESC")) { |
1166 } else if(text && !strcmp(child->name, "DESC")) { |
| 1167 purple_notify_user_info_add_pair(user_info, _("Description"), text); |
1167 purple_notify_user_info_add_pair(user_info, _("Description"), text); |
| 1168 } else if(!strcmp(child->name, "PHOTO") || |
1168 } else if(!strcmp(child->name, "PHOTO") || |