more FIDE titles

This commit is contained in:
Thibault Duplessis 2014-04-16 21:53:13 +02:00
parent 829a8c7ef7
commit 1a17ad3fb2

View file

@ -69,14 +69,20 @@ object User {
def normalize(username: String) = username.toLowerCase
val titles = Seq(
"CM" -> "Candidate Master (CM)",
"NM" -> "National Master (NM)",
"FM" -> "FIDE Master (FM)",
"IM" -> "International Master (IM)",
"GM" -> "Grand Master (GM)")
"GM" -> "Grandmaster",
"WGM" -> "Woman Grandmaster",
"IM" -> "International Master",
"WIM" -> "Woman Intl. Master",
"FM" -> "FIDE Master",
"NM" -> "National Master",
"CM" -> "FIDE Candidate Master",
"WCM" -> "FIDE Woman Candidate Master",
"WNM" -> "Woman National Master")
val titlesMap = titles.toMap
def titleName(title: String) = titlesMap get title getOrElse title
object BSONFields {
val id = "_id"
val username = "username"