ZanattMan
ZanattMan

Reputation: 736

Messages not in use with Play Framework

I'm coding with Scala using Play Framework. As usual, we have all the messages in the messages file. By refactoring and changing the views, there are a bunch of messages that are not being used any more.

As the project is pretty big, I was wondering if there is a way to get a list of all the messages not being used in the app.

Upvotes: 1

Views: 59

Answers (1)

Andriy Kuba
Andriy Kuba

Reputation: 8263

I did not try this module, but it could something that you are looking for

https://github.com/evanbennett/play-messages/blob/master/README.md

This plugin can:

... Check for unused message keys ...

Upvotes: 2

Related Questions