Files
evolution/e-util/ename/e-name-western-tables.h
Nat Friedman 3d9889baee Committing this thing I wrote last year to parse names. It's cute.
svn path=/trunk/; revision=2301
2000-04-06 05:21:29 +00:00

54 lines
986 B
C

#ifndef __E_NAME_WESTERN_TABLES_H__
#define __E_NAME_WESTERN_TABLES_H__
char *e_name_western_pfx_table[] = {
/*
* English.
*/
"mister", "miss.", "mr.", "mrs.", "ms.",
"miss", "mr", "mrs", "ms", "sir",
"professor", "prof.", "dr", "dr.", "doctor",
"reverend", "president", "judge", "senator",
"congressman", "congresswoman",
"the honorable", "the reverend", "his holiness",
"his eminence",
/*
* French.
*/
"monsieur", "mr.", "mademoiselle", "melle.",
"madame", "mme.", "professeur",
/*
* Spanish.
*/
"senor", "senora", "senorita",
NULL};
char *e_name_western_sfx_table[] = {
/*
* English.
*/
"junior", "senior", "jr", "sr", "I", "II", "III", "IV", "V",
"phd", "ms", "md", "esq", "esq.", "esquire",
NULL};
char *e_name_western_twopart_sfx_table[] = {
/*
* English.
*/
"the first", "the second", "the third",
NULL};
char *e_name_western_complex_last_table[] = {"van", "von", "de", NULL};
#endif /* ! __E_NAME_WESTERN_TABLES_H__ */