I create files in the project:

ru.properties en.properties 

each line - key = value

I create a class:

 class Localization {} 

In class, one method

 public String get(String key) {...} 

How to prompt IDE IDEA, what keys should be searched for in localization files? Is it possible? Those. pressing the autocomplete keys, the idea should offer me options. Thank.

    0