photoprism/pkg/txt/titles.go

98 lines
2.1 KiB
Go

package txt
// TitlesAndRanks contains a list of name titles and ranks in lowercase, see https://en.wikipedia.org/wiki/List_of_titles.
var TitlesAndRanks = map[string]bool{
"emperor": true,
"caliph": true,
"king": true,
"kings": true,
"shahanshah": true,
"padishah": true,
"sultan": true,
"chakravarti": true,
"chhatrapati": true,
"samrat": true,
"khagan": true,
"high": true,
"great": true,
"maharaja": true,
"beg": true,
"khan": true,
"amir": true,
"al-umara": true,
"bek": true,
"malik": true,
"emir": true,
"hakim": true,
"sharif": true,
"shah": true,
"shirvanshah": true,
"raja": true,
"dey": true,
"duke": true,
"khedive": true,
"nawab": true,
"wāli": true,
"nizam": true,
"crown": true,
"prince": true,
"shahzada": true,
"mirza": true,
"awabzada": true,
"yuvraj": true,
"vali": true,
"mir": true,
"ikhshid": true,
"pasha": true,
"thakur": true,
"babu": true,
"saheb": true,
"sardar": true,
"rajkumar": true,
"sahibzada": true,
"nawabzada": true,
"earl": true,
"mankari": true,
"dewan": true,
"rao": true,
"bahadur": true,
"rai": true,
"beylerbey": true,
"atabeg": true,
"viscount": true,
"zamindar": true,
"sahib": true,
"bey": true,
"begum": true,
"begzada": true,
"baron": true,
"lala": true,
"agha": true,
"hazinedar": true,
"queen": true,
"pope": true,
"marquess": true,
"baroness": true,
"princess": true,
"lord": true,
"lady": true,
"supreme": true,
"leader": true,
"chief": true,
"excellency": true,
"doctor": true,
"president": true,
"marshal": true,
"conqueror": true,
"general": true,
"admiral": true,
"guide": true,
"executive": true,
"bishop": true,
"highness": true,
"his": true,
"her": true,
"monsignor": true,
"sire": true,
}