Remove s-strings

pull/9973/head
Benedikt Werner 2021-10-16 08:17:04 +02:00
parent ae2cc3e290
commit f386a0739d
No known key found for this signature in database
GPG Key ID: 1DBFF0F8E9E121EB
1 changed files with 3 additions and 3 deletions

View File

@ -141,8 +141,8 @@ object Analyser {
case object AlreadyAnalysed extends Result("This game is already analysed".some)
case object NotAnalysable extends Result("This game is not analysable".some)
case object ConcurrentAnalysis extends Result("You already have an ongoing requested analysis".some)
case object WeeklyLimit extends Result(s"You have reached the weekly analysis limit".some)
case object DailyLimit extends Result(s"You have reached the daily analysis limit".some)
case object DailyIpLimit extends Result(s"You have reached the daily analysis limit on this IP".some)
case object WeeklyLimit extends Result("You have reached the weekly analysis limit".some)
case object DailyLimit extends Result("You have reached the daily analysis limit".some)
case object DailyIpLimit extends Result("You have reached the daily analysis limit on this IP".some)
}
}